Commit d62fdf8b authored by Sachin Kamat's avatar Sachin Kamat Committed by David S. Miller

drivers/net: Use of_match_ptr() macro in smsc911x.c

Add CONFIG_OF guard and use of_match_ptr macro.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 89ce376c
...@@ -2575,11 +2575,13 @@ static const struct dev_pm_ops smsc911x_pm_ops = { ...@@ -2575,11 +2575,13 @@ static const struct dev_pm_ops smsc911x_pm_ops = {
#define SMSC911X_PM_OPS NULL #define SMSC911X_PM_OPS NULL
#endif #endif
#ifdef CONFIG_OF
static const struct of_device_id smsc911x_dt_ids[] = { static const struct of_device_id smsc911x_dt_ids[] = {
{ .compatible = "smsc,lan9115", }, { .compatible = "smsc,lan9115", },
{ /* sentinel */ } { /* sentinel */ }
}; };
MODULE_DEVICE_TABLE(of, smsc911x_dt_ids); MODULE_DEVICE_TABLE(of, smsc911x_dt_ids);
#endif
static struct platform_driver smsc911x_driver = { static struct platform_driver smsc911x_driver = {
.probe = smsc911x_drv_probe, .probe = smsc911x_drv_probe,
...@@ -2588,7 +2590,7 @@ static struct platform_driver smsc911x_driver = { ...@@ -2588,7 +2590,7 @@ static struct platform_driver smsc911x_driver = {
.name = SMSC_CHIPNAME, .name = SMSC_CHIPNAME,
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = SMSC911X_PM_OPS, .pm = SMSC911X_PM_OPS,
.of_match_table = smsc911x_dt_ids, .of_match_table = of_match_ptr(smsc911x_dt_ids),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment