mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 10:08:59 +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>
27 lines
888 B
Diff
27 lines
888 B
Diff
From 50d3f15ea5d6ca2705a009722dd7d4108c9f75d9 Mon Sep 17 00:00:00 2001
|
|
From: Peter Robinson <pbrobinson@gmail.com>
|
|
Date: Sun, 5 May 2019 21:07:12 +0100
|
|
Subject: [PATCH] arm: dts: overlays: rpi-sense: add upstream humidity
|
|
compatible
|
|
|
|
The upstream humidiity driver uses "st,hts221" for the compatible
|
|
string so add that in as well so it will work with an unmodified
|
|
upstream kernel driver. We leave the downstream as the priority.
|
|
|
|
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
|
|
---
|
|
arch/arm/boot/dts/overlays/rpi-sense-overlay.dts | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/rpi-sense-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/rpi-sense-overlay.dts
|
|
@@ -38,7 +38,7 @@
|
|
};
|
|
|
|
hts221-humid@5f {
|
|
- compatible = "st,hts221-humid";
|
|
+ compatible = "st,hts221-humid", "st,hts221";
|
|
reg = <0x5f>;
|
|
status = "okay";
|
|
};
|