Skip to content

Commit b098c63

Browse files
author
Phil Elwell
committed
overlays: Fix compatible string for ds1307 RTC
Kernels since 4.19 have required the correct manufacture name in the compatible string for I2C devices, and unfortunately the one for the Dallas/Maxim DS1307 should have been "dallas,ds1307" and not "maxim,ds1307". See: #3013 Signed-off-by: Phil Elwell <[email protected]>
1 parent d15b6cc commit b098c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/boot/dts/overlays/i2c-rtc-overlay.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
status = "okay";
3131

3232
ds1307: ds1307@68 {
33-
compatible = "maxim,ds1307";
33+
compatible = "dallas,ds1307";
3434
reg = <0x68>;
3535
status = "okay";
3636
};

0 commit comments

Comments
 (0)