mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
21 lines
682 B
Diff
21 lines
682 B
Diff
From 3c8282fa8f1a50bf5ff5b83e83d97b37433bbdd9 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.org>
|
|
Date: Wed, 15 Jun 2016 16:48:41 +0100
|
|
Subject: [PATCH] rtc: Add SPI alias for pcf2123 driver
|
|
|
|
Without this alias, Device Tree won't cause the driver
|
|
to be loaded.
|
|
|
|
See: https://github.com/raspberrypi/linux/pull/1510
|
|
---
|
|
drivers/rtc/rtc-pcf2123.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/rtc/rtc-pcf2123.c
|
|
+++ b/drivers/rtc/rtc-pcf2123.c
|
|
@@ -472,3 +472,4 @@ module_spi_driver(pcf2123_driver);
|
|
MODULE_AUTHOR("Chris Verges <chrisv@cyberswitching.com>");
|
|
MODULE_DESCRIPTION("NXP PCF2123 RTC driver");
|
|
MODULE_LICENSE("GPL");
|
|
+MODULE_ALIAS("spi:rtc-pcf2123");
|