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>
31 lines
955 B
Diff
31 lines
955 B
Diff
From de002983174698762ecd3e42ab5a4b1bceb80af1 Mon Sep 17 00:00:00 2001
|
|
From: Stefan Wahren <stefan.wahren@i2se.com>
|
|
Date: Sun, 30 Dec 2018 12:07:16 +0100
|
|
Subject: [PATCH] ARM: dts: bcm2835-rpi: Drop unnecessary
|
|
#address-cells/#size-cells
|
|
|
|
Compiling the bcm2835-rpi.dtsi with W=1 leads to the following warning:
|
|
|
|
Warning (avoid_unnecessary_addr_size): /soc/firmware: unnecessary
|
|
#address-cells/#size-cells without "ranges" or child "reg" property
|
|
|
|
Fix this by removing these unnecessary properties.
|
|
|
|
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
|
|
Reviewed-by: Eric Anholt <eric@anholt.net>
|
|
---
|
|
arch/arm/boot/dts/bcm2835-rpi.dtsi | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/bcm2835-rpi.dtsi
|
|
+++ b/arch/arm/boot/dts/bcm2835-rpi.dtsi
|
|
@@ -19,8 +19,6 @@
|
|
soc {
|
|
firmware: firmware {
|
|
compatible = "raspberrypi,bcm2835-firmware", "simple-bus";
|
|
- #address-cells = <0>;
|
|
- #size-cells = <0>;
|
|
mboxes = <&mailbox>;
|
|
};
|
|
|