net/fec: fix unterminated platform_device_id table
authorAxel Lin <axel.lin@gmail.com>
Tue, 22 Feb 2011 23:28:46 +0000 (23:28 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Feb 2011 20:35:44 +0000 (12:35 -0800)
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>
drivers/net/fec.c

index 2a71373..cd0282d 100644 (file)
@@ -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];