From: Andy Walls <awalls@md.metrocast.net>
To: Tim Gardner <tim.gardner@canonical.com>
Cc: linux-kernel@vger.kernel.org,
Mauro Carvalho Chehab <mchehab@infradead.org>,
linux-media@vger.kernel.org
Subject: Re: [PATCH] cx25840: Declare MODULE_FIRMWARE usage
Date: Thu, 26 Jul 2012 17:59:14 -0400 [thread overview]
Message-ID: <1343339959.2575.3.camel@palomino.walls.org> (raw)
In-Reply-To: <1343321059-124171-1-git-send-email-tim.gardner@canonical.com>
On Thu, 2012-07-26 at 10:44 -0600, Tim Gardner wrote:
> Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
> Cc: linux-media@vger.kernel.org
> Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
> ---
> drivers/media/video/cx25840/cx25840-firmware.c | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/video/cx25840/cx25840-firmware.c b/drivers/media/video/cx25840/cx25840-firmware.c
> index 8150200..b3169f9 100644
> --- a/drivers/media/video/cx25840/cx25840-firmware.c
> +++ b/drivers/media/video/cx25840/cx25840-firmware.c
> @@ -61,6 +61,10 @@ static void end_fw_load(struct i2c_client *client)
> cx25840_write(client, 0x803, 0x03);
> }
>
> +#define CX2388x_FIRMWARE "v4l-cx23885-avcore-01.fw"
> +#define CX231xx_FIRMWARE "v4l-cx231xx-avcore-01.fw"
> +#define CX25840_FIRMWARE "v4l-cx25840.fw"
> +
> static const char *get_fw_name(struct i2c_client *client)
> {
> struct cx25840_state *state = to_state(i2c_get_clientdata(client));
> @@ -68,10 +72,10 @@ static const char *get_fw_name(struct i2c_client *client)
> if (firmware[0])
> return firmware;
> if (is_cx2388x(state))
> - return "v4l-cx23885-avcore-01.fw";
> + return CX2388x_FIRMWARE;
> if (is_cx231xx(state))
> - return "v4l-cx231xx-avcore-01.fw";
> - return "v4l-cx25840.fw";
> + return CX231xx_FIRMWARE;
> + return CX25840_FIRMWARE;
> }
>
> static int check_fw_load(struct i2c_client *client, int size)
> @@ -164,3 +168,8 @@ int cx25840_loadfw(struct i2c_client *client)
>
> return check_fw_load(client, size);
> }
> +
> +MODULE_FIRMWARE(CX2388x_FIRMWARE);
> +MODULE_FIRMWARE(CX231xx_FIRMWARE);
> +MODULE_FIRMWARE(CX25840_FIRMWARE);
> +
How will the firmware attribute in the .module_info section be used?
For any one model of TV capture device, the cx25840 only needs one of
the above firmware files. The others need not exist.
I would not want anything in user or kernel space to refuse to load the
module just because all 3 firmware files are not present.
Regards,
Andy
next prev parent reply other threads:[~2012-07-26 21:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-26 16:44 Tim Gardner
2012-07-26 21:59 ` Andy Walls [this message]
2012-07-27 12:06 ` Tim Gardner
2012-07-28 16:52 ` Andy Walls
2012-07-30 12:47 ` Tim Gardner
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=1343339959.2575.3.camel@palomino.walls.org \
--to=awalls@md.metrocast.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@infradead.org \
--cc=tim.gardner@canonical.com \
/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
Powered by JetHome