Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89ce376c authored by Sachin Kamat's avatar Sachin Kamat Committed by David S. Miller
Browse files

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



This eliminates having an #ifdef returning NULL for the case
when OF is disabled.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bd779028
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -2386,8 +2386,6 @@ static const struct of_device_id smc91x_match[] = {
	{},
};
MODULE_DEVICE_TABLE(of, smc91x_match);
#else
#define smc91x_match NULL
#endif

static struct dev_pm_ops smc_drv_pm_ops = {
@@ -2402,7 +2400,7 @@ static struct platform_driver smc_driver = {
		.name	= CARDNAME,
		.owner	= THIS_MODULE,
		.pm	= &smc_drv_pm_ops,
		.of_match_table = smc91x_match,
		.of_match_table = of_match_ptr(smc91x_match),
	},
};