diff options
Diffstat (limited to 'drivers/media/video/msp3400.c')
-rw-r--r-- | drivers/media/video/msp3400.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/media/video/msp3400.c b/drivers/media/video/msp3400.c index ca02f6f14b00..f0d43fc2632f 100644 --- a/drivers/media/video/msp3400.c +++ b/drivers/media/video/msp3400.c | |||
@@ -124,10 +124,14 @@ module_param(standard, int, 0644); | |||
124 | module_param(amsound, int, 0644); | 124 | module_param(amsound, int, 0644); |
125 | module_param(dolby, int, 0644); | 125 | module_param(dolby, int, 0644); |
126 | 126 | ||
127 | MODULE_PARM_DESC(opmode, "Forces a MSP3400 opmode. 0=Manual, 1=Simple, 2=Simpler"); | ||
127 | MODULE_PARM_DESC(once, "No continuous stereo monitoring"); | 128 | MODULE_PARM_DESC(once, "No continuous stereo monitoring"); |
128 | MODULE_PARM_DESC(debug, "Enable debug messages"); | 129 | MODULE_PARM_DESC(debug, "Enable debug messages"); |
130 | MODULE_PARM_DESC(stereo_threshold, "Sets signal threshold to activate stereo"); | ||
129 | MODULE_PARM_DESC(standard, "Specify audio standard: 32 = NTSC, 64 = radio, Default: Autodetect"); | 131 | MODULE_PARM_DESC(standard, "Specify audio standard: 32 = NTSC, 64 = radio, Default: Autodetect"); |
130 | MODULE_PARM_DESC(amsound, "Hardwire AM sound at 6.5Hz (France), FM can autoscan"); | 132 | MODULE_PARM_DESC(amsound, "Hardwire AM sound at 6.5Hz (France), FM can autoscan"); |
133 | MODULE_PARM_DESC(dolby, "Activates Dolby processsing"); | ||
134 | |||
131 | 135 | ||
132 | MODULE_DESCRIPTION("device driver for msp34xx TV sound processor"); | 136 | MODULE_DESCRIPTION("device driver for msp34xx TV sound processor"); |
133 | MODULE_AUTHOR("Gerd Knorr"); | 137 | MODULE_AUTHOR("Gerd Knorr"); |
@@ -1452,7 +1456,7 @@ static int msp_attach(struct i2c_adapter *adap, int addr, int kind) | |||
1452 | client_template.addr = addr; | 1456 | client_template.addr = addr; |
1453 | 1457 | ||
1454 | if (-1 == msp3400c_reset(&client_template)) { | 1458 | if (-1 == msp3400c_reset(&client_template)) { |
1455 | dprintk("msp3400: no chip found\n"); | 1459 | dprintk("msp34xx: no chip found\n"); |
1456 | return -1; | 1460 | return -1; |
1457 | } | 1461 | } |
1458 | 1462 | ||
@@ -1478,7 +1482,7 @@ static int msp_attach(struct i2c_adapter *adap, int addr, int kind) | |||
1478 | if (-1 == msp3400c_reset(c)) { | 1482 | if (-1 == msp3400c_reset(c)) { |
1479 | kfree(msp); | 1483 | kfree(msp); |
1480 | kfree(c); | 1484 | kfree(c); |
1481 | dprintk("msp3400: no chip found\n"); | 1485 | dprintk("msp34xx: no chip found\n"); |
1482 | return -1; | 1486 | return -1; |
1483 | } | 1487 | } |
1484 | 1488 | ||
@@ -1488,7 +1492,7 @@ static int msp_attach(struct i2c_adapter *adap, int addr, int kind) | |||
1488 | if ((-1 == msp->rev1) || (0 == msp->rev1 && 0 == msp->rev2)) { | 1492 | if ((-1 == msp->rev1) || (0 == msp->rev1 && 0 == msp->rev2)) { |
1489 | kfree(msp); | 1493 | kfree(msp); |
1490 | kfree(c); | 1494 | kfree(c); |
1491 | printk("msp3400: error while reading chip version\n"); | 1495 | dprintk("msp34xx: error while reading chip version\n"); |
1492 | return -1; | 1496 | return -1; |
1493 | } | 1497 | } |
1494 | 1498 | ||