brcm2708: add linux 4.1 support
[openwrt.git] / target / linux / brcm2708 / patches-4.1 / 0052-Update-ds1307-driver-for-device-tree-support.patch
1 From 5b706049d22fc0593a14a1d94ebf7f9bf54feeea 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 052/121] 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 @@ -1242,6 +1242,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",