diff mbox series

[v6,1/4] rtc: ds1307: fix data pointer to m41t0

Message ID 20180516210842.5874-1-giulio.benetti@micronovasrl.com
State Accepted
Headers show
Series [v6,1/4] rtc: ds1307: fix data pointer to m41t0 | expand

Commit Message

Giulio Benetti May 16, 2018, 9:08 p.m. UTC
data field points to m41t00, instead it should point to m41t0.
Driver works correctly because on both cases(m41t0 and m41t00) chip_desc
are equal.

Point to right enum m41t0 instead of m41t00.

Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
---
 drivers/rtc/rtc-ds1307.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Alexandre Belloni July 16, 2018, 9:36 p.m. UTC | #1
On 16/05/2018 23:08:39+0200, Giulio Benetti wrote:
> data field points to m41t00, instead it should point to m41t0.
> Driver works correctly because on both cases(m41t0 and m41t00) chip_desc
> are equal.
> 
> Point to right enum m41t0 instead of m41t00.
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
> ---
>  drivers/rtc/rtc-ds1307.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
Applied, thanks.
diff mbox series

Patch

diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c
index a13e59edff53..32aadcbc377f 100644
--- a/drivers/rtc/rtc-ds1307.c
+++ b/drivers/rtc/rtc-ds1307.c
@@ -298,7 +298,7 @@  static const struct of_device_id ds1307_of_match[] = {
 	},
 	{
 		.compatible = "st,m41t0",
-		.data = (void *)m41t00
+		.data = (void *)m41t0
 	},
 	{
 		.compatible = "st,m41t00",