aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ll_temac_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ll_temac_main.c')
-rw-r--r--drivers/net/ll_temac_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ll_temac_main.c b/drivers/net/ll_temac_main.c
index 9c7395c10e44..dc318330ec79 100644
--- a/drivers/net/ll_temac_main.c
+++ b/drivers/net/ll_temac_main.c
@@ -955,12 +955,12 @@ static struct of_device_id temac_of_match[] __devinitdata = {
955MODULE_DEVICE_TABLE(of, temac_of_match); 955MODULE_DEVICE_TABLE(of, temac_of_match);
956 956
957static struct of_platform_driver temac_of_driver = { 957static struct of_platform_driver temac_of_driver = {
958 .match_table = temac_of_match,
959 .probe = temac_of_probe, 958 .probe = temac_of_probe,
960 .remove = __devexit_p(temac_of_remove), 959 .remove = __devexit_p(temac_of_remove),
961 .driver = { 960 .driver = {
962 .owner = THIS_MODULE, 961 .owner = THIS_MODULE,
963 .name = "xilinx_temac", 962 .name = "xilinx_temac",
963 .of_match_table = temac_of_match,
964 }, 964 },
965}; 965};
966 966