diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-07-05 14:55:41 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-07-05 14:55:41 -0300 |
commit | 279c5f3afbe8df017510c35a0fb21214f5ba71cc (patch) | |
tree | 2767bdd13e22dbd2a7bf6a854191b603e0bae486 /linux/drivers | |
parent | 67a813e58e5795849408155bf77579c0630f3b8e (diff) | |
download | mediapointer-dvb-s2-279c5f3afbe8df017510c35a0fb21214f5ba71cc.tar.gz mediapointer-dvb-s2-279c5f3afbe8df017510c35a0fb21214f5ba71cc.tar.bz2 |
backport commit 4327b77ed7e73336069c441f91df58a251c77975
From: Mauro Carvalho Chehab <mchehab@redhat.com>
kernel-sync:
Author: Samuel Ortiz <sameo@linux.intel.com>
Date: Wed May 27 00:49:33 2009 +0200
firmware: tuners/xc2028: prepare for FIRMWARE_NAME_MAX removal
We're going to remove the FIRMWARE_NAME_MAX definition in order to avoid any
firmware name length restriction.
This patch gets rid of the xc2028 FIRMWARE_NAME_MAX reference.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/common/tuners/tuner-xc2028.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/common/tuners/tuner-xc2028.c b/linux/drivers/media/common/tuners/tuner-xc2028.c index 8ead0e1e1..3de5d6685 100644 --- a/linux/drivers/media/common/tuners/tuner-xc2028.c +++ b/linux/drivers/media/common/tuners/tuner-xc2028.c @@ -52,7 +52,7 @@ MODULE_PARM_DESC(audio_std, "NICAM/A\n" "NICAM/B\n"); -static char firmware_name[FIRMWARE_NAME_MAX]; +static char firmware_name[30]; module_param_string(firmware_name, firmware_name, sizeof(firmware_name), 0); MODULE_PARM_DESC(firmware_name, "Firmware file name. Allows overriding the " "default firmware name\n"); |