|
@@ -60,7 +60,6 @@ static struct pvr2_hdw *unit_pointers[PVR_NUM] = {[ 0 ... PVR_NUM-1 ] = NULL};
|
|
static DEFINE_MUTEX(pvr2_unit_mtx);
|
|
static DEFINE_MUTEX(pvr2_unit_mtx);
|
|
|
|
|
|
static int ctlchg;
|
|
static int ctlchg;
|
|
-static int initusbreset = 1;
|
|
|
|
static int procreload;
|
|
static int procreload;
|
|
static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
|
|
static int tuner[PVR_NUM] = { [0 ... PVR_NUM-1] = -1 };
|
|
static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
|
|
static int tolerance[PVR_NUM] = { [0 ... PVR_NUM-1] = 0 };
|
|
@@ -71,8 +70,6 @@ module_param(ctlchg, int, S_IRUGO|S_IWUSR);
|
|
MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
|
|
MODULE_PARM_DESC(ctlchg, "0=optimize ctl change 1=always accept new ctl value");
|
|
module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
|
|
module_param(init_pause_msec, int, S_IRUGO|S_IWUSR);
|
|
MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
|
|
MODULE_PARM_DESC(init_pause_msec, "hardware initialization settling delay");
|
|
-module_param(initusbreset, int, S_IRUGO|S_IWUSR);
|
|
|
|
-MODULE_PARM_DESC(initusbreset, "Do USB reset device on probe");
|
|
|
|
module_param(procreload, int, S_IRUGO|S_IWUSR);
|
|
module_param(procreload, int, S_IRUGO|S_IWUSR);
|
|
MODULE_PARM_DESC(procreload,
|
|
MODULE_PARM_DESC(procreload,
|
|
"Attempt init failure recovery with firmware reload");
|
|
"Attempt init failure recovery with firmware reload");
|
|
@@ -1967,9 +1964,6 @@ static void pvr2_hdw_setup_low(struct pvr2_hdw *hdw)
|
|
}
|
|
}
|
|
hdw->fw1_state = FW1_STATE_OK;
|
|
hdw->fw1_state = FW1_STATE_OK;
|
|
|
|
|
|
- if (initusbreset) {
|
|
|
|
- pvr2_hdw_device_reset(hdw);
|
|
|
|
- }
|
|
|
|
if (!pvr2_hdw_dev_ok(hdw)) return;
|
|
if (!pvr2_hdw_dev_ok(hdw)) return;
|
|
|
|
|
|
for (idx = 0; idx < hdw->hdw_desc->client_modules.cnt; idx++) {
|
|
for (idx = 0; idx < hdw->hdw_desc->client_modules.cnt; idx++) {
|