All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 1/2] uio: Use Use of_match_ptr() macro in uio_pdrv_genirq.c
@ 2013-05-23 14:01 ` Michal Simek
  0 siblings, 0 replies; 26+ messages in thread
From: Michal Simek @ 2013-05-23 14:01 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA
  Cc: Greg Kroah-Hartman, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	Michal Simek, Rob Herring, Hans J. Koch, Grant Likely


[-- Attachment #1.1: Type: text/plain, Size: 972 bytes --]

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

Signed-off-by: Michal Simek <michal.simek-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
---
 drivers/uio/uio_pdrv_genirq.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/uio/uio_pdrv_genirq.c b/drivers/uio/uio_pdrv_genirq.c
index c122bca..d7ba355 100644
--- a/drivers/uio/uio_pdrv_genirq.c
+++ b/drivers/uio/uio_pdrv_genirq.c
@@ -267,8 +267,6 @@ static const struct of_device_id uio_of_genirq_match[] = {
 	{ /* empty for now */ },
 };
 MODULE_DEVICE_TABLE(of, uio_of_genirq_match);
-#else
-# define uio_of_genirq_match NULL
 #endif

 static struct platform_driver uio_pdrv_genirq = {
@@ -278,7 +276,7 @@ static struct platform_driver uio_pdrv_genirq = {
 		.name = DRIVER_NAME,
 		.owner = THIS_MODULE,
 		.pm = &uio_pdrv_genirq_dev_pm_ops,
-		.of_match_table = uio_of_genirq_match,
+		.of_match_table = of_match_ptr(uio_of_genirq_match),
 	},
 };

--
1.8.2.3


[-- Attachment #1.2: Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 192 bytes --]

_______________________________________________
devicetree-discuss mailing list
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
https://lists.ozlabs.org/listinfo/devicetree-discuss

^ permalink raw reply related	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2013-06-21  9:15 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-23 14:01 [RFC PATCH 1/2] uio: Use Use of_match_ptr() macro in uio_pdrv_genirq.c Michal Simek
2013-05-23 14:01 ` Michal Simek
2013-05-23 14:01 ` [RFC PATCH 2/2] uio: Add two platform uio drivers to one Michal Simek
2013-05-29 11:28   ` Michal Simek
2013-06-03 12:34     ` Michal Simek
2013-06-03 21:05       ` Greg Kroah-Hartman
2013-06-12  5:43         ` Michal Simek
2013-06-20 16:01         ` Pavel Machek
2013-06-20 16:20           ` [lm-sensors] [PATCH] MAINTAINERS: Remove Hans J. Koch entries Joe Perches
2013-06-20 16:20             ` Joe Perches
2013-06-20 16:30             ` [lm-sensors] " Guenter Roeck
2013-06-20 16:30               ` Guenter Roeck
2013-06-20 17:09               ` Joe Perches
2013-06-20 17:09                 ` Joe Perches
2013-06-21  2:50             ` Hans J. Koch
2013-06-21  2:50               ` Hans J. Koch
2013-06-21  3:08               ` [lm-sensors] " Joe Perches
2013-06-21  3:08                 ` Joe Perches
2013-06-21  7:47               ` [lm-sensors] " Jean Delvare
2013-06-21  7:47                 ` Jean Delvare
2013-06-21  9:15               ` Michal Simek
2013-06-21  9:15                 ` Michal Simek
2013-06-20 17:11           ` [RFC PATCH 2/2] uio: Add two platform uio drivers to one Michal Simek
2013-06-20 23:13             ` Pavel Machek
2013-06-21  9:06               ` Michal Simek
2013-06-10  8:59   ` Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.