[media] solo6x10: Fix solo_eeprom_read retval type

s/unsigned short/u16/

Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Ismael Luceno 2014-12-24 08:36:01 -03:00 committed by Mauro Carvalho Chehab
parent 469ac53e7c
commit b1bb7ee2d9
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ unsigned int solo_eeprom_ewen(struct solo_dev *solo_dev, int w_en)
__be16 solo_eeprom_read(struct solo_dev *solo_dev, int loc)
{
int read_cmd = loc | (EE_READ_CMD << ADDR_LEN);
unsigned short retval = 0;
u16 retval = 0;
int i;
solo_eeprom_cmd(solo_dev, read_cmd);