brcm2708: update linux 4.4 patches to latest version
[openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0073-Update-ds1307-driver-for-device-tree-support.patch
1 From 21d08f232ffc350b2930f761f3da26f9867b1d4d 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 073/170] 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",