linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] drivers: uio_dmem_genirq: Use of_match_ptr() macro
@ 2013-03-14 10:22 Sachin Kamat
  2013-03-14 10:22 ` [PATCH 2/2] drivers: uio_pdrv_genirq: " Sachin Kamat
  2013-03-19  1:20 ` [PATCH 1/2] drivers: uio_dmem_genirq: " Damian Hobson-Garcia
  0 siblings, 2 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-03-14 10:22 UTC (permalink / raw)
  To: linux-kernel; +Cc: hjk, gregkh, sachin.kamat, Damian Hobson-Garcia

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

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Damian Hobson-Garcia <dhobsong@igel.co.jp>
---
 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 252434c..125d0e5 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[] = {
 	{ /* empty for now */ },
 };
 MODULE_DEVICE_TABLE(of, uio_of_genirq_match);
-#else
-# define uio_of_genirq_match NULL
 #endif
 
 static struct platform_driver uio_dmem_genirq = {
@@ -347,7 +345,7 @@ static struct platform_driver uio_dmem_genirq = {
 		.name = DRIVER_NAME,
 		.owner = THIS_MODULE,
 		.pm = &uio_dmem_genirq_dev_pm_ops,
-		.of_match_table = uio_of_genirq_match,
+		.of_match_table = of_match_ptr(uio_of_genirq_match),
 	},
 };
 
-- 
1.7.4.1


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

* [PATCH 2/2] drivers: uio_pdrv_genirq: Use of_match_ptr() macro
  2013-03-14 10:22 [PATCH 1/2] drivers: uio_dmem_genirq: Use of_match_ptr() macro Sachin Kamat
@ 2013-03-14 10:22 ` Sachin Kamat
  2013-03-19  1:20 ` [PATCH 1/2] drivers: uio_dmem_genirq: " Damian Hobson-Garcia
  1 sibling, 0 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-03-14 10:22 UTC (permalink / raw)
  To: linux-kernel; +Cc: hjk, gregkh, sachin.kamat

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

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/uio/uio_pdrv_genirq.c |    4 +---
 1 files changed, 1 insertions(+), 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.7.4.1


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

* Re: [PATCH 1/2] drivers: uio_dmem_genirq: Use of_match_ptr() macro
  2013-03-14 10:22 [PATCH 1/2] drivers: uio_dmem_genirq: Use of_match_ptr() macro Sachin Kamat
  2013-03-14 10:22 ` [PATCH 2/2] drivers: uio_pdrv_genirq: " Sachin Kamat
@ 2013-03-19  1:20 ` Damian Hobson-Garcia
  2013-04-17  9:16   ` Sachin Kamat
  1 sibling, 1 reply; 4+ messages in thread
From: Damian Hobson-Garcia @ 2013-03-19  1:20 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-kernel, hjk, gregkh

On 2013/03/14 19:22, Sachin Kamat wrote:
> This eliminates having an #ifdef returning NULL for the case
> when OF is disabled.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Damian Hobson-Garcia <dhobsong@igel.co.jp>
> ---
Thank you,
Looks fine by me.

Acked-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>



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

* Re: [PATCH 1/2] drivers: uio_dmem_genirq: Use of_match_ptr() macro
  2013-03-19  1:20 ` [PATCH 1/2] drivers: uio_dmem_genirq: " Damian Hobson-Garcia
@ 2013-04-17  9:16   ` Sachin Kamat
  0 siblings, 0 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-04-17  9:16 UTC (permalink / raw)
  To: hjk; +Cc: linux-kernel, gregkh, Damian Hobson-Garcia

On 19 March 2013 06:50, Damian Hobson-Garcia <dhobsong@igel.co.jp> wrote:
> On 2013/03/14 19:22, Sachin Kamat wrote:
>>
>> This eliminates having an #ifdef returning NULL for the case
>> when OF is disabled.
>>
>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>> Cc: Damian Hobson-Garcia <dhobsong@igel.co.jp>
>> ---
>
> Thank you,
> Looks fine by me.
>
> Acked-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>

Hans,

Would you be picking up these patches for 3.10?


-- 
With warm regards,
Sachin

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

end of thread, other threads:[~2013-04-17  9:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-14 10:22 [PATCH 1/2] drivers: uio_dmem_genirq: Use of_match_ptr() macro Sachin Kamat
2013-03-14 10:22 ` [PATCH 2/2] drivers: uio_pdrv_genirq: " Sachin Kamat
2013-03-19  1:20 ` [PATCH 1/2] drivers: uio_dmem_genirq: " Damian Hobson-Garcia
2013-04-17  9:16   ` Sachin Kamat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).