diff options
author | Bartosz Golaszewski <brgl@bgdev.pl> | 2018-02-06 12:08:10 +0100 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2018-02-06 14:36:32 -0800 |
commit | 05382333595612204d6c91820bd77be20119cb9b (patch) | |
tree | ce10269a70d3ca03b67a33170cfffa6d320d4a40 /arch | |
parent | 827cc2fa024dd6517d62de7a44c7b42f32af371b (diff) | |
download | op-kernel-dev-05382333595612204d6c91820bd77be20119cb9b.zip op-kernel-dev-05382333595612204d6c91820bd77be20119cb9b.tar.gz |
arc: dts: use 'atmel' as manufacturer for at24 in axs10x_mb
Using compatible strings without the <manufacturer> part for at24 is
deprecated since commit 6da28acf745f ("dt-bindings: at24: consistently
document the compatible property"). Use a correct 'atmel,<model>'
value.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arc/boot/dts/axs10x_mb.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/boot/dts/axs10x_mb.dtsi b/arch/arc/boot/dts/axs10x_mb.dtsi index 74d070c..47b74fb 100644 --- a/arch/arc/boot/dts/axs10x_mb.dtsi +++ b/arch/arc/boot/dts/axs10x_mb.dtsi @@ -214,13 +214,13 @@ }; eeprom@0x54{ - compatible = "24c01"; + compatible = "atmel,24c01"; reg = <0x54>; pagesize = <0x8>; }; eeprom@0x57{ - compatible = "24c04"; + compatible = "atmel,24c04"; reg = <0x57>; pagesize = <0x8>; }; |