layerscape: add 64b/32b target for ls1046ardb device
[openwrt/openwrt.git] / target / linux / layerscape / patches-4.4 / 8125-rtc-pcf2127-add-pcf2129-device-id.patch
1 From 228d15f0c525d1d62540539ebb8d311feddb79f5 Mon Sep 17 00:00:00 2001
2 From: Akinobu Mita <akinobu.mita@gmail.com>
3 Date: Mon, 26 Sep 2016 11:26:11 +0800
4 Subject: [PATCH 125/141] rtc: pcf2127: add pcf2129 device id
5
6 commit e8bf83a7f9454ed1026f100139ebd10eace0e280
7 [context adjustment]
8
9 There are only a few differences between PCF2127 and PCF2129 (PCF2127
10 has 512 bytes of general purpose SRAM and count-down timer).
11
12 The rtc-pcf2127 driver currently doesn't use the PCF2127 specific
13 functionality and Kconfig help text already says this driver supports
14 PCF2127/29, so we can simply add pcf2129 to device id list.
15
16 Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
17 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
18 Signed-off-by: Shaohui Xie <Shaohui.Xie@nxp.com>
19 Integrated-by: Zhao Qiang <qiang.zhao@nxp.com>
20 ---
21 drivers/rtc/rtc-pcf2127.c | 8 +++++---
22 1 file changed, 5 insertions(+), 3 deletions(-)
23
24 --- a/drivers/rtc/rtc-pcf2127.c
25 +++ b/drivers/rtc/rtc-pcf2127.c
26 @@ -1,12 +1,12 @@
27 /*
28 - * An I2C driver for the NXP PCF2127 RTC
29 + * An I2C and SPI driver for the NXP PCF2127/29 RTC
30 * Copyright 2013 Til-Technologies
31 *
32 * Author: Renaud Cerrato <r.cerrato@til-technologies.fr>
33 *
34 * based on the other drivers in this same directory.
35 *
36 - * http://www.nxp.com/documents/data_sheet/PCF2127AT.pdf
37 + * Datasheet: http://cache.nxp.com/documents/data_sheet/PCF2127.pdf
38 *
39 * This program is free software; you can redistribute it and/or modify
40 * it under the terms of the GNU General Public License version 2 as
41 @@ -216,6 +216,7 @@ static int pcf2127_probe(struct i2c_clie
42
43 static const struct i2c_device_id pcf2127_id[] = {
44 { "pcf2127", 0 },
45 + { "pcf2129", 0 },
46 { }
47 };
48 MODULE_DEVICE_TABLE(i2c, pcf2127_id);
49 @@ -223,6 +224,7 @@ MODULE_DEVICE_TABLE(i2c, pcf2127_id);
50 #ifdef CONFIG_OF
51 static const struct of_device_id pcf2127_of_match[] = {
52 { .compatible = "nxp,pcf2127" },
53 + { .compatible = "nxp,pcf2129" },
54 {}
55 };
56 MODULE_DEVICE_TABLE(of, pcf2127_of_match);
57 @@ -240,5 +242,5 @@ static struct i2c_driver pcf2127_driver
58 module_i2c_driver(pcf2127_driver);
59
60 MODULE_AUTHOR("Renaud Cerrato <r.cerrato@til-technologies.fr>");
61 -MODULE_DESCRIPTION("NXP PCF2127 RTC driver");
62 +MODULE_DESCRIPTION("NXP PCF2127/29 RTC driver");
63 MODULE_LICENSE("GPL v2");