aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tda9887.c
diff options
context:
space:
mode:
authorBert Wesarg <wesarg@informatik.uni-halle.de>2005-04-16 15:25:43 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 15:25:43 -0700
commit975e046cc06005bafe0c5ce81d55a1b1eb84f5a1 (patch)
tree6e95047664d5d5e2006a753449122cd6e7e32002 /drivers/media/video/tda9887.c
parent[PATCH] kernel/param.c: don't use .max when .num is NULL in param_array_set() (diff)
downloadlinux-dev-975e046cc06005bafe0c5ce81d55a1b1eb84f5a1.tar.xz
linux-dev-975e046cc06005bafe0c5ce81d55a1b1eb84f5a1.zip
[PATCH] fix module_param_string() calls
This patch fix 3 calls to module_param_string() in driver/media/video/tuner-core.c and drivers/media/video/tda9887.c. In all three places, the len and the perm parameter was switched. Signed-off-by: Bert Wesarg <wesarg@informatik.uni-halle.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/tda9887.c')
-rw-r--r--drivers/media/video/tda9887.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c
index d9c3169f9a04..debef1910c37 100644
--- a/drivers/media/video/tda9887.c
+++ b/drivers/media/video/tda9887.c
@@ -478,9 +478,9 @@ static int tda9887_set_pinnacle(struct tda9887 *t, char *buf)
/* ---------------------------------------------------------------------- */
static char pal[] = "-";
-module_param_string(pal, pal, 0644, sizeof(pal));
+module_param_string(pal, pal, sizeof(pal), 0644);
static char secam[] = "-";
-module_param_string(secam, secam, 0644, sizeof(secam));
+module_param_string(secam, secam, sizeof(secam), 0644);
static int tda9887_fixup_std(struct tda9887 *t)
{