diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-06-25 00:29:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-25 20:22:30 -0400 |
commit | cee4fbd6cd7608f6dad7539f39e9281125702a16 (patch) | |
tree | b52390b1ef15448b336f27534d73ccfb85cbd282 | |
parent | 9049f7932109f3fe189ffa8028f2e23f06a9bd0b (diff) |
drivers: uio_pdrv_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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/uio/uio_pdrv_genirq.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/uio/uio_pdrv_genirq.c b/drivers/uio/uio_pdrv_genirq.c index bcd72f3a62c3..4eb8eaf71be8 100644 --- a/drivers/uio/uio_pdrv_genirq.c +++ b/drivers/uio/uio_pdrv_genirq.c | |||
@@ -271,11 +271,8 @@ static struct of_device_id uio_of_genirq_match[] = { | |||
271 | { /* Sentinel */ }, | 271 | { /* Sentinel */ }, |
272 | }; | 272 | }; |
273 | MODULE_DEVICE_TABLE(of, uio_of_genirq_match); | 273 | MODULE_DEVICE_TABLE(of, uio_of_genirq_match); |
274 | |||
275 | module_param_string(of_id, uio_of_genirq_match[0].compatible, 128, 0); | 274 | module_param_string(of_id, uio_of_genirq_match[0].compatible, 128, 0); |
276 | MODULE_PARM_DESC(of_id, "Openfirmware id of the device to be handled by uio"); | 275 | MODULE_PARM_DESC(of_id, "Openfirmware id of the device to be handled by uio"); |
277 | #else | ||
278 | # define uio_of_genirq_match NULL | ||
279 | #endif | 276 | #endif |
280 | 277 | ||
281 | static struct platform_driver uio_pdrv_genirq = { | 278 | static struct platform_driver uio_pdrv_genirq = { |
@@ -285,7 +282,7 @@ static struct platform_driver uio_pdrv_genirq = { | |||
285 | .name = DRIVER_NAME, | 282 | .name = DRIVER_NAME, |
286 | .owner = THIS_MODULE, | 283 | .owner = THIS_MODULE, |
287 | .pm = &uio_pdrv_genirq_dev_pm_ops, | 284 | .pm = &uio_pdrv_genirq_dev_pm_ops, |
288 | .of_match_table = uio_of_genirq_match, | 285 | .of_match_table = of_match_ptr(uio_of_genirq_match), |
289 | }, | 286 | }, |
290 | }; | 287 | }; |
291 | 288 | ||