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 /include/media/tveeprom.h | |
parent | 3406e89ae11407187596f5a2c2c156bc0fa87713 (diff) | |
download | linux-446aba663b8240b24202cb8902b0d5c8f91aa3da.tar.bz2 |
[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 'include/media/tveeprom.h')
-rw-r--r-- | include/media/tveeprom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/tveeprom.h b/include/media/tveeprom.h index c56501ee0484..5324c82fc810 100644 --- a/include/media/tveeprom.h +++ b/include/media/tveeprom.h @@ -100,7 +100,7 @@ struct tveeprom { * contain 256 bytes filled with the contents of the * eeprom read from the Hauppauge device. */ -void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, +void tveeprom_hauppauge_analog(struct tveeprom *tvee, unsigned char *eeprom_data); /** |