brcm2708: add Raspberry Pi 2 support
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-3.18 / 0086-Update-ds1307-driver-for-device-tree-support.patch
1 From ee23837a8a79b6ab67cab13d63804ba5a7260528 Mon Sep 17 00:00:00 2001
2 From: Ryan Coe <bluemrp9@gmail.com>
3 Date: Sat, 31 Jan 2015 18:25:49 -0700
4 Subject: [PATCH 086/114] Update ds1307 driver for device-tree support
5
6 Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
7 ---
8 drivers/rtc/rtc-ds1307.c | 8 ++++++++
9 1 file changed, 8 insertions(+)
10
11 diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c
12 index bb43cf7..dadd4fb 100644
13 --- a/drivers/rtc/rtc-ds1307.c
14 +++ b/drivers/rtc/rtc-ds1307.c
15 @@ -1241,6 +1241,14 @@ static int ds1307_remove(struct i2c_client *client)
16 return 0;
17 }
18
19 +#ifdef CONFIG_OF
20 +static const struct of_device_id ds1307_of_match[] = {
21 + { .compatible = "maxim,ds1307" },
22 + { }
23 +};
24 +MODULE_DEVICE_TABLE(of, ds1307_of_match);
25 +#endif
26 +
27 static struct i2c_driver ds1307_driver = {
28 .driver = {
29 .name = "rtc-ds1307",
30 --
31 1.8.3.2
32