aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/fec.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-02-22 23:28:46 +0000
committerDavid S. Miller <davem@davemloft.net>2011-02-28 12:35:44 -0800
commit9eb0e6f26e48ef22cc56a2b81b1572ace999f70f (patch)
treedbca40cac19ea455aeab697df9f20287582549df /drivers/net/fec.c
parentnet: update Documentation/networking/00-INDEX (diff)
downloadlinux-dev-9eb0e6f26e48ef22cc56a2b81b1572ace999f70f.tar.xz
linux-dev-9eb0e6f26e48ef22cc56a2b81b1572ace999f70f.zip
net/fec: fix unterminated platform_device_id table
The platform_device_id table is supposed to be zero-terminated. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/fec.c')
-rw-r--r--drivers/net/fec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/fec.c b/drivers/net/fec.c
index 2a71373719ae..cd0282d5d40f 100644
--- a/drivers/net/fec.c
+++ b/drivers/net/fec.c
@@ -74,7 +74,8 @@ static struct platform_device_id fec_devtype[] = {
}, {
.name = "imx28-fec",
.driver_data = FEC_QUIRK_ENET_MAC | FEC_QUIRK_SWAP_FRAME,
- }
+ },
+ { }
};
static unsigned char macaddr[ETH_ALEN];