mirror of https://gitee.com/openkylin/linux.git
ARM: dts: fix STMicroelectronics compatible strings
Replace the non-standard vendor prefix stm with st for STMicroelectronics. The drivers do not specify the vendor prefixes since the I2C Core strips them away from the DT provided compatible string. Therefore, changing existing device trees does not have any impact on device detection. Signed-off-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Rob Herring <robh@kernel.org>
This commit is contained in:
parent
5edc2aae16
commit
0a6f366a82
|
@ -37,7 +37,7 @@ i2c0: i2c@80058000 {
|
|||
status = "okay";
|
||||
|
||||
rtc: rtc@68 {
|
||||
compatible = "stm,m41t62";
|
||||
compatible = "st,m41t62";
|
||||
reg = <0x68>;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -102,7 +102,7 @@ &i2c2 {
|
|||
status = "okay";
|
||||
|
||||
rtc: m41t00@68 {
|
||||
compatible = "stm,m41t00";
|
||||
compatible = "st,m41t00";
|
||||
reg = <0x68>;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -84,7 +84,7 @@ eeprom: eeprom@50 {
|
|||
};
|
||||
|
||||
rtc: rtc@68 {
|
||||
compatible = "stm,m41t62";
|
||||
compatible = "st,m41t62";
|
||||
reg = <0x68>;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -282,7 +282,7 @@ temp2: ad7414@4d {
|
|||
};
|
||||
|
||||
rtc: m41t62@68 {
|
||||
compatible = "stm,m41t62";
|
||||
compatible = "st,m41t62";
|
||||
reg = <0x68>;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -52,7 +52,7 @@ &i2c0 {
|
|||
status = "okay";
|
||||
|
||||
rtc: rtc@68 {
|
||||
compatible = "stm,m41t82";
|
||||
compatible = "st,m41t82";
|
||||
reg = <0x68>;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue