diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-03-03 07:28:29 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-03-03 07:35:02 -0300 |
commit | 446aba663b8240b24202cb8902b0d5c8f91aa3da (patch) | |
tree | 4488e2b1d72a206aa46a366f977edda2a7cd6897 /drivers/media/usb/au0828 | |
parent | 3406e89ae11407187596f5a2c2c156bc0fa87713 (diff) | |
download | linux-446aba663b8240b24202cb8902b0d5c8f91aa3da.tar.gz linux-446aba663b8240b24202cb8902b0d5c8f91aa3da.tar.bz2 linux-446aba663b8240b24202cb8902b0d5c8f91aa3da.zip |
[media] tveeprom: get rid of unused arg on tveeprom_hauppauge_analog()
tveeprom_hauppauge_analog() used to need the I2C adapter in
order to print debug messages. As it now uses pr_foo() facilities
since commit 6037b3ca28f4 ("[media] tveeprom: print log messages
using pr_foo()"), the first argument of the function is not
needed anymore.
So, get rid of it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/au0828')
-rw-r--r-- | drivers/media/usb/au0828/au0828-cards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/au0828/au0828-cards.c b/drivers/media/usb/au0828/au0828-cards.c index 313f659f0bfb..43bfa778b070 100644 --- a/drivers/media/usb/au0828/au0828-cards.c +++ b/drivers/media/usb/au0828/au0828-cards.c @@ -153,7 +153,7 @@ static void hauppauge_eeprom(struct au0828_dev *dev, u8 *eeprom_data) { struct tveeprom tv; - tveeprom_hauppauge_analog(&dev->i2c_client, &tv, eeprom_data); + tveeprom_hauppauge_analog(&tv, eeprom_data); dev->board.tuner_type = tv.tuner_type; /* Make sure we support the board model */ |