projects
/
profile
/
common
/
kernel-common.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd77902
)
drivers/net: Use of_match_ptr() macro in smc91x.c
author
Sachin Kamat
<sachin.kamat@linaro.org>
Wed, 19 Dec 2012 01:17:09 +0000
(
01:17
+0000)
committer
David S. Miller
<davem@davemloft.net>
Wed, 19 Dec 2012 20:50:07 +0000
(12:50 -0800)
This eliminates having an #ifdef returning NULL for the case
when OF is disabled.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/smsc/smc91x.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/smsc/smc91x.c
b/drivers/net/ethernet/smsc/smc91x.c
index
022b45b
..
a670d23
100644
(file)
--- a/
drivers/net/ethernet/smsc/smc91x.c
+++ b/
drivers/net/ethernet/smsc/smc91x.c
@@
-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)
,
},
};