diff options
author | Mike Isely <devnull@localhost> | 2006-01-09 06:58:23 +0000 |
---|---|---|
committer | Mike Isely <devnull@localhost> | 2006-01-09 06:58:23 +0000 |
commit | 1512c7eec2630027d332398b9d5b04a987f7ad4f (patch) | |
tree | d23a05db2853d11da683de949421cc0769fadfb9 | |
parent | 2f999c230688131f47f938e3184982d425d19637 (diff) | |
download | mediapointer-dvb-s2-1512c7eec2630027d332398b9d5b04a987f7ad4f.tar.gz mediapointer-dvb-s2-1512c7eec2630027d332398b9d5b04a987f7ad4f.tar.bz2 |
Remove some long-dead code from the pvrusb2 driver
From: Mike Isely <isely@pobox.com>
Signed-off-by: Mike Isely <isely@pobox.com>
-rw-r--r-- | v4l/ChangeLog | 8 | ||||
-rw-r--r-- | v4l_experimental/pvrusb2/pvrusb2-hdw.c | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index ca7e23ba9..8e5083f3c 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,11 @@ +2006-01-09 06:56 mcisely + + * v4l_experimental/pvrusb2/pvrusb2-hdw.c: + + - Remove some long-dead code from the pvrusb2 driver. + + Signed-off-by: Mike Isely <isely@pobox.com> + 2006-01-09 06:50 mcisely * v4l_experimental/pvrusb2/pvrusb2-debug.h: diff --git a/v4l_experimental/pvrusb2/pvrusb2-hdw.c b/v4l_experimental/pvrusb2/pvrusb2-hdw.c index 2c6bfc949..664524705 100644 --- a/v4l_experimental/pvrusb2/pvrusb2-hdw.c +++ b/v4l_experimental/pvrusb2/pvrusb2-hdw.c @@ -1,6 +1,6 @@ /* * - * $Id: pvrusb2-hdw.c,v 1.10 2006/01/09 06:54:46 mcisely Exp $ + * $Id: pvrusb2-hdw.c,v 1.11 2006/01/09 06:58:23 mcisely Exp $ * * Copyright (C) 2005 Mike Isely <isely@pobox.com> * @@ -38,8 +38,6 @@ static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = 0}; DECLARE_MUTEX(pvr2_unit_sem); -static int hfull = 1; -static int width = 720; static int ctlchg = 0; static int initusbreset = 1; static int procreload = 0; @@ -53,10 +51,6 @@ MODULE_PARM_DESC(initusbreset, "Do USB reset device on probe"); module_param(procreload, int, S_IRUGO|S_IWUSR); MODULE_PARM_DESC(procreload, "Attempt init failure recovery with firmware reload"); -module_param(hfull, int, S_IRUGO|S_IWUSR); -MODULE_PARM_DESC(hfull, "full height video ?"); -module_param(width, int, S_IRUGO|S_IWUSR); -MODULE_PARM_DESC(width, "video width : 720,480,352"); module_param_array(tuner, int, NULL, 0444); MODULE_PARM_DESC(tuner,"specify installed tuner type"); module_param_array(tolerance, int, NULL, 0444); |