brcm2708: update linux 4.4 patches to latest version
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0074-enc28j60-Add-device-tree-compatible-string-and-an-ov.patch
1 From eb20da3dea76bd4835582038015ddfee2c401ee7 Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.org>
3 Date: Fri, 27 Feb 2015 15:10:24 +0000
4 Subject: [PATCH] enc28j60: Add device tree compatible string and an overlay
5
6 ---
7 drivers/net/ethernet/microchip/enc28j60.c | 7 +++++++
8 1 file changed, 7 insertions(+)
9
10 --- a/drivers/net/ethernet/microchip/enc28j60.c
11 +++ b/drivers/net/ethernet/microchip/enc28j60.c
12 @@ -1630,9 +1630,16 @@ static int enc28j60_remove(struct spi_de
13 return 0;
14 }
15
16 +static const struct of_device_id enc28j60_of_match[] = {
17 + { .compatible = "microchip,enc28j60", },
18 + { /* sentinel */ }
19 +};
20 +MODULE_DEVICE_TABLE(of, enc28j60_of_match);
21 +
22 static struct spi_driver enc28j60_driver = {
23 .driver = {
24 .name = DRV_NAME,
25 + .of_match_table = enc28j60_of_match,
26 },
27 .probe = enc28j60_probe,
28 .remove = enc28j60_remove,