From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Cc: Changbin Du <changbin.du@gmail.com>,
tsoni@codeaurora.org, dan carpenter <dan.carpenter@oracle.com>,
kumarrav@codeaurora.org, linux-media@vger.kernel.org,
linux-kernel@vger.kernel.org, mchehab@infradead.org
Subject: Re: [PATCH] media: gpio-ir-recv: add allowed_protos and map_name for platform data
Date: Fri, 06 Jul 2012 18:23:40 -0300 [thread overview]
Message-ID: <4FF7575C.8030808@redhat.com> (raw)
In-Reply-To: <539669167.615856.1341314356547.JavaMail.root@advansee.com>
Em 03-07-2012 08:19, Benoît Thébaudeau escreveu:
> Hi Changbin,
>
> On Tue, Jul 3, 2012 at 12:27:19PM +0200, Changbin Du wrote:
>> It's better to give platform code a chance to specify the allowed
>> protocols and which keymap to use.
>
> Already half done here:
> http://git.linuxtv.org/media_tree.git?a=commitdiff;h=2bd237b
OK. Applied just the other half of the change.
Regards,
Mauro
-
[media] media: gpio-ir-recv: add allowed_protos for platform data
From: Du, Changbin <changbin.du@gmail.com>
It's better to give platform code a chance to specify the allowed
protocols to use.
[mchehab@redhat.com: fix merge conflict with a patch that made
half of this change]
Signed-off-by: Du, Changbin <changbin.du@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
diff --git a/drivers/media/rc/gpio-ir-recv.c b/drivers/media/rc/gpio-ir-recv.c
index 59fe60c..04cb272 100644
--- a/drivers/media/rc/gpio-ir-recv.c
+++ b/drivers/media/rc/gpio-ir-recv.c
@@ -84,7 +84,6 @@ static int __devinit gpio_ir_recv_probe(struct platform_device *pdev)
rcdev->priv = gpio_dev;
rcdev->driver_type = RC_DRIVER_IR_RAW;
- rcdev->allowed_protos = RC_TYPE_ALL;
rcdev->input_name = GPIO_IR_DEVICE_NAME;
rcdev->input_phys = GPIO_IR_DEVICE_NAME "/input0";
rcdev->input_id.bustype = BUS_HOST;
@@ -93,6 +92,10 @@ static int __devinit gpio_ir_recv_probe(struct platform_device *pdev)
rcdev->input_id.version = 0x0100;
rcdev->dev.parent = &pdev->dev;
rcdev->driver_name = GPIO_IR_DRIVER_NAME;
+ if (pdata->allowed_protos)
+ rcdev->allowed_protos = pdata->allowed_protos;
+ else
+ rcdev->allowed_protos = RC_TYPE_ALL;
rcdev->map_name = pdata->map_name ?: RC_MAP_EMPTY;
gpio_dev->rcdev = rcdev;
diff --git a/include/media/gpio-ir-recv.h b/include/media/gpio-ir-recv.h
index 91546f3..0142736 100644
--- a/include/media/gpio-ir-recv.h
+++ b/include/media/gpio-ir-recv.h
@@ -14,9 +14,10 @@
#define __GPIO_IR_RECV_H__
struct gpio_ir_recv_platform_data {
- int gpio_nr;
- bool active_low;
- const char *map_name;
+ int gpio_nr;
+ bool active_low;
+ u64 allowed_protos;
+ const char *map_name;
};
#endif /* __GPIO_IR_RECV_H__ */
prev parent reply other threads:[~2012-07-06 21:23 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-03 10:27 [PATCH] media: gpio-ir-recv: add allowed_protos and map_name for platform data Du, Changbin
2012-07-03 11:19 ` Benoît Thébaudeau
2012-07-04 3:08 ` Du, Changbin
2012-07-06 21:23 ` Mauro Carvalho Chehab [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4FF7575C.8030808@redhat.com \
--to=mchehab@redhat.com \
--cc=benoit.thebaudeau@advansee.com \
--cc=changbin.du@gmail.com \
--cc=dan.carpenter@oracle.com \
--cc=kumarrav@codeaurora.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@infradead.org \
--cc=tsoni@codeaurora.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).