diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-08-11 09:14:31 +0200 |
---|---|---|
committer | Wei Xu <xuwei5@hisilicon.com> | 2021-08-13 10:26:49 +0200 |
commit | 2dc30eb9241c21cbeaf5b668f4eb276278149d97 (patch) | |
tree | 810fb5159729830195c239ae6c49fb8a80379475 /arch/arm64/boot/dts/hisilicon | |
parent | Linux 5.14-rc1 (diff) | |
download | linux-2dc30eb9241c21cbeaf5b668f4eb276278149d97.tar.xz linux-2dc30eb9241c21cbeaf5b668f4eb276278149d97.zip |
arm64: dts: HiSilicon: hi3660: address a PCI warning
When the driver is registered, it produces a warning when
registering the PCI bridge:
[ 5.363450] pci_bus 0000:00: root bus resource [bus 00-01]
[ 5.396998] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-01] (conflicts with (null) [bus 00-01])
[ 5.284831] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
The reason is that the bus-range is wrong. Address it.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
Diffstat (limited to 'arch/arm64/boot/dts/hisilicon')
-rw-r--r-- | arch/arm64/boot/dts/hisilicon/hi3660.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/hisilicon/hi3660.dtsi b/arch/arm64/boot/dts/hisilicon/hi3660.dtsi index f1ec87c05842..2d5c1a348716 100644 --- a/arch/arm64/boot/dts/hisilicon/hi3660.dtsi +++ b/arch/arm64/boot/dts/hisilicon/hi3660.dtsi @@ -1002,7 +1002,7 @@ <0x0 0xf3f20000 0x0 0x40000>, <0x0 0xf5000000 0x0 0x2000>; reg-names = "dbi", "apb", "phy", "config"; - bus-range = <0x0 0x1>; + bus-range = <0x0 0xff>; #address-cells = <3>; #size-cells = <2>; device_type = "pci"; |