mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 11:57:03 +07:00
edc0581978
Pass the memory unit-adress to fix the following build warnings with W=1: Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name There are cases where dts passes an empty memory node, which will be filled by the bootloader. Passing the memory base address still allows the bootloader to fill the memory size. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Acked-By: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
24 lines
451 B
Plaintext
24 lines
451 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
/*
|
|
* Copyright 2018 Toradex AG
|
|
*/
|
|
|
|
#include "imx6ull-colibri.dtsi"
|
|
|
|
/ {
|
|
memory@80000000 {
|
|
reg = <0x80000000 0x10000000>;
|
|
};
|
|
};
|
|
|
|
&iomuxc {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_gpio1 &pinctrl_gpio2 &pinctrl_gpio3
|
|
&pinctrl_gpio4 &pinctrl_gpio5 &pinctrl_gpio6>;
|
|
};
|
|
|
|
&iomuxc_snvs {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_snvs_gpio1 &pinctrl_snvs_gpio2 &pinctrl_snvs_gpio3>;
|
|
};
|