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>
48 lines
1.4 KiB
Diff
48 lines
1.4 KiB
Diff
From ff25f8c70fd995e4f76a3c1245556cc0ec3db19d Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.org>
|
|
Date: Tue, 18 Jun 2019 11:16:13 +0100
|
|
Subject: [PATCH] overlays: Fix further maxim,ds1307 references
|
|
|
|
See: https://github.com/raspberrypi/linux/issues/3013
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|
---
|
|
arch/arm/boot/dts/overlays/balena-fin-overlay.dts | 2 +-
|
|
arch/arm/boot/dts/overlays/i2c-rtc-gpio-overlay.dts | 2 +-
|
|
arch/arm/boot/dts/overlays/tinylcd35-overlay.dts | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/balena-fin-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/balena-fin-overlay.dts
|
|
@@ -84,7 +84,7 @@
|
|
|
|
// rtc clock
|
|
ds1307: ds1307@68 {
|
|
- compatible = "maxim,ds1307";
|
|
+ compatible = "dallas,ds1307";
|
|
reg = <0x68>;
|
|
status = "okay";
|
|
};
|
|
--- a/arch/arm/boot/dts/overlays/i2c-rtc-gpio-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/i2c-rtc-gpio-overlay.dts
|
|
@@ -46,7 +46,7 @@
|
|
status = "okay";
|
|
|
|
ds1307: ds1307@68 {
|
|
- compatible = "maxim,ds1307";
|
|
+ compatible = "dallas,ds1307";
|
|
reg = <0x68>;
|
|
status = "okay";
|
|
};
|
|
--- a/arch/arm/boot/dts/overlays/tinylcd35-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/tinylcd35-overlay.dts
|
|
@@ -155,7 +155,7 @@
|
|
status = "okay";
|
|
|
|
ds1307: ds1307@68 {
|
|
- compatible = "maxim,ds1307";
|
|
+ compatible = "dallas,ds1307";
|
|
reg = <0x68>;
|
|
status = "okay";
|
|
};
|