0259d5edf1084d34f14d4370151ba1c5250156e6
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0072-Update-ds1307-driver-for-device-tree-support.patch
1 From 5527e5534c58f8555d699d10d2d67afc3aa768e0 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] 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 --- a/drivers/rtc/rtc-ds1307.c
12 +++ b/drivers/rtc/rtc-ds1307.c
13 @@ -1207,6 +1207,14 @@ static int ds1307_remove(struct i2c_clie
14 return 0;
15 }
16
17 +#ifdef CONFIG_OF
18 +static const struct of_device_id ds1307_of_match[] = {
19 + { .compatible = "maxim,ds1307" },
20 + { }
21 +};
22 +MODULE_DEVICE_TABLE(of, ds1307_of_match);
23 +#endif
24 +
25 static struct i2c_driver ds1307_driver = {
26 .driver = {
27 .name = "rtc-ds1307",