diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-19 00:32:47 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-24 19:29:59 -0400 |
commit | 077797117dfa209717e1f3f1416c1101c0e047f0 (patch) | |
tree | 4ccc235fa822e8c3a1791728cbc459276e4ab2dd /drivers/uio | |
parent | 585d98e00ba7a5e2abe65f7a1eff631cb612289b (diff) |
drivers: uio_dmem_genirq: Use of_match_ptr() macro
This eliminates having an #ifdef returning NULL for the case
when OF is disabled.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/uio')
-rw-r--r-- | drivers/uio/uio_dmem_genirq.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/uio/uio_dmem_genirq.c b/drivers/uio/uio_dmem_genirq.c index 252434c9ea9d..125d0e5a6887 100644 --- a/drivers/uio/uio_dmem_genirq.c +++ b/drivers/uio/uio_dmem_genirq.c | |||
@@ -336,8 +336,6 @@ static const struct of_device_id uio_of_genirq_match[] = { | |||
336 | { /* empty for now */ }, | 336 | { /* empty for now */ }, |
337 | }; | 337 | }; |
338 | MODULE_DEVICE_TABLE(of, uio_of_genirq_match); | 338 | MODULE_DEVICE_TABLE(of, uio_of_genirq_match); |
339 | #else | ||
340 | # define uio_of_genirq_match NULL | ||
341 | #endif | 339 | #endif |
342 | 340 | ||
343 | static struct platform_driver uio_dmem_genirq = { | 341 | static struct platform_driver uio_dmem_genirq = { |
@@ -347,7 +345,7 @@ static struct platform_driver uio_dmem_genirq = { | |||
347 | .name = DRIVER_NAME, | 345 | .name = DRIVER_NAME, |
348 | .owner = THIS_MODULE, | 346 | .owner = THIS_MODULE, |
349 | .pm = &uio_dmem_genirq_dev_pm_ops, | 347 | .pm = &uio_dmem_genirq_dev_pm_ops, |
350 | .of_match_table = uio_of_genirq_match, | 348 | .of_match_table = of_match_ptr(uio_of_genirq_match), |
351 | }, | 349 | }, |
352 | }; | 350 | }; |
353 | 351 | ||