Message ID | 20200107122908.18025-1-shawn.guo@linaro.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | 6fa154e46c723b1eaa24ad16fbe92c2a3bf98dbc |
Headers | show |
Series | arm64: dts: hi3798cv200: correct PCIe 'bus-range' setting | expand |
Hi Shawn, On 2020/1/7 20:29, Shawn Guo wrote: > The PCIe 'bus-range' setting is incorrect and causing the following > message during boot. > > pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f]) > > Correct it to get rid of the message. > > Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Thanks! Applied to the hisilicon arm64 dt tree. Best Regards, Wei > --- > arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi b/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi > index 0a30aaae6bf2..4d1a3d1fc31c 100644 > --- a/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi > +++ b/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi > @@ -569,7 +569,7 @@ > #address-cells = <3>; > #size-cells = <2>; > device_type = "pci"; > - bus-range = <0 15>; > + bus-range = <0x00 0xff>; > num-lanes = <1>; > ranges = <0x81000000 0x0 0x00000000 0x4f00000 0x0 0x100000 > 0x82000000 0x0 0x3000000 0x3000000 0x0 0x01f00000>;
diff --git a/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi b/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi index 0a30aaae6bf2..4d1a3d1fc31c 100644 --- a/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi +++ b/arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi @@ -569,7 +569,7 @@ #address-cells = <3>; #size-cells = <2>; device_type = "pci"; - bus-range = <0 15>; + bus-range = <0x00 0xff>; num-lanes = <1>; ranges = <0x81000000 0x0 0x00000000 0x4f00000 0x0 0x100000 0x82000000 0x0 0x3000000 0x3000000 0x0 0x01f00000>;
The PCIe 'bus-range' setting is incorrect and causing the following message during boot. pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f]) Correct it to get rid of the message. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> --- arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)