mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
ARM: dts: uniphier: remove U-Boot own EEPROM compatible and property
The compatible string "i2c-eeprom" is U-Boot own compatible, which
has never been approved by the DT community. "u-boot,i2c-offset-len"
is also a U-Boot own hack.
Linux adds "atmel,*" as generic compatibles, and U-Boot also followed
it by commit d7e28918aa
("i2c_eeprom: Add reading support").
The U-Boot own hack is no longer needed. Just sync with Linux.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
5ad159623f
commit
53265152d2
5 changed files with 5 additions and 9 deletions
|
@ -132,7 +132,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
eeprom@50 {
|
eeprom@50 {
|
||||||
compatible = "st,24c64", "atmel,24c64", "i2c-eeprom";
|
compatible = "st,24c64", "atmel,24c64";
|
||||||
reg = <0x50>;
|
reg = <0x50>;
|
||||||
pagesize = <32>;
|
pagesize = <32>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -50,10 +50,9 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
|
||||||
eeprom@54 {
|
eeprom@54 {
|
||||||
compatible = "st,24c64", "atmel,24c64", "i2c-eeprom";
|
compatible = "st,24c64", "atmel,24c64";
|
||||||
reg = <0x54>;
|
reg = <0x54>;
|
||||||
pagesize = <32>;
|
pagesize = <32>;
|
||||||
u-boot,i2c-offset-len = <2>;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -45,10 +45,9 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
|
||||||
eeprom@54 {
|
eeprom@54 {
|
||||||
compatible = "st,24c64", "atmel,24c64", "i2c-eeprom";
|
compatible = "st,24c64", "atmel,24c64";
|
||||||
reg = <0x54>;
|
reg = <0x54>;
|
||||||
pagesize = <32>;
|
pagesize = <32>;
|
||||||
u-boot,i2c-offset-len = <2>;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -48,10 +48,9 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
|
||||||
eeprom@54 {
|
eeprom@54 {
|
||||||
compatible = "st,24c64", "atmel,24c64", "i2c-eeprom";
|
compatible = "st,24c64", "atmel,24c64";
|
||||||
reg = <0x54>;
|
reg = <0x54>;
|
||||||
pagesize = <32>;
|
pagesize = <32>;
|
||||||
u-boot,i2c-offset-len = <2>;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,8 @@
|
||||||
|
|
||||||
&i2c0 {
|
&i2c0 {
|
||||||
eeprom@50 {
|
eeprom@50 {
|
||||||
compatible = "microchip,24lc128", "i2c-eeprom";
|
compatible = "microchip,24lc128", "atmel,24c128";
|
||||||
reg = <0x50>;
|
reg = <0x50>;
|
||||||
pagesize = <64>;
|
pagesize = <64>;
|
||||||
u-boot,i2c-offset-len = <2>;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue