mirror of https://gitee.com/openkylin/linux.git
[media] solo6x10: fix sparse warnings
drivers/media/pci/solo6x10/solo6x10-disp.c:184:24: warning: incorrect type in assignment (different base types) drivers/media/pci/solo6x10/solo6x10-disp.c:223:32: warning: incorrect type in assignment (different base types) Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
3ee733ea9c
commit
c44b6484db
|
@ -172,7 +172,7 @@ static void solo_vout_config(struct solo_dev *solo_dev)
|
||||||
static int solo_dma_vin_region(struct solo_dev *solo_dev, u32 off,
|
static int solo_dma_vin_region(struct solo_dev *solo_dev, u32 off,
|
||||||
u16 val, int reg_size)
|
u16 val, int reg_size)
|
||||||
{
|
{
|
||||||
u16 *buf;
|
__le16 *buf;
|
||||||
const int n = 64, size = n * sizeof(*buf);
|
const int n = 64, size = n * sizeof(*buf);
|
||||||
int i, ret = 0;
|
int i, ret = 0;
|
||||||
|
|
||||||
|
@ -211,7 +211,7 @@ int solo_set_motion_block(struct solo_dev *solo_dev, u8 ch,
|
||||||
{
|
{
|
||||||
const unsigned size = sizeof(u16) * 64;
|
const unsigned size = sizeof(u16) * 64;
|
||||||
u32 off = SOLO_MOT_FLAG_AREA + ch * SOLO_MOT_THRESH_SIZE * 2;
|
u32 off = SOLO_MOT_FLAG_AREA + ch * SOLO_MOT_THRESH_SIZE * 2;
|
||||||
u16 *buf;
|
__le16 *buf;
|
||||||
int x, y;
|
int x, y;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
|
|
|
@ -100,7 +100,7 @@ unsigned int solo_eeprom_ewen(struct solo_dev *solo_dev, int w_en)
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned short solo_eeprom_read(struct solo_dev *solo_dev, int loc)
|
__be16 solo_eeprom_read(struct solo_dev *solo_dev, int loc)
|
||||||
{
|
{
|
||||||
int read_cmd = loc | (EE_READ_CMD << ADDR_LEN);
|
int read_cmd = loc | (EE_READ_CMD << ADDR_LEN);
|
||||||
unsigned short retval = 0;
|
unsigned short retval = 0;
|
||||||
|
@ -117,11 +117,11 @@ unsigned short solo_eeprom_read(struct solo_dev *solo_dev, int loc)
|
||||||
|
|
||||||
solo_eeprom_reg_write(solo_dev, ~EE_CS);
|
solo_eeprom_reg_write(solo_dev, ~EE_CS);
|
||||||
|
|
||||||
return retval;
|
return (__force __be16)retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int solo_eeprom_write(struct solo_dev *solo_dev, int loc,
|
int solo_eeprom_write(struct solo_dev *solo_dev, int loc,
|
||||||
unsigned short data)
|
__be16 data)
|
||||||
{
|
{
|
||||||
int write_cmd = loc | (EE_WRITE_CMD << ADDR_LEN);
|
int write_cmd = loc | (EE_WRITE_CMD << ADDR_LEN);
|
||||||
unsigned int retval;
|
unsigned int retval;
|
||||||
|
@ -130,7 +130,7 @@ int solo_eeprom_write(struct solo_dev *solo_dev, int loc,
|
||||||
solo_eeprom_cmd(solo_dev, write_cmd);
|
solo_eeprom_cmd(solo_dev, write_cmd);
|
||||||
|
|
||||||
for (i = 15; i >= 0; i--) {
|
for (i = 15; i >= 0; i--) {
|
||||||
unsigned int dataval = (data >> i) & 1;
|
unsigned int dataval = ((__force unsigned)data >> i) & 1;
|
||||||
|
|
||||||
solo_eeprom_reg_write(solo_dev, EE_ENB);
|
solo_eeprom_reg_write(solo_dev, EE_ENB);
|
||||||
solo_eeprom_reg_write(solo_dev,
|
solo_eeprom_reg_write(solo_dev,
|
||||||
|
|
|
@ -394,9 +394,9 @@ int solo_osd_print(struct solo_enc_dev *solo_enc);
|
||||||
|
|
||||||
/* EEPROM commands */
|
/* EEPROM commands */
|
||||||
unsigned int solo_eeprom_ewen(struct solo_dev *solo_dev, int w_en);
|
unsigned int solo_eeprom_ewen(struct solo_dev *solo_dev, int w_en);
|
||||||
unsigned short solo_eeprom_read(struct solo_dev *solo_dev, int loc);
|
__be16 solo_eeprom_read(struct solo_dev *solo_dev, int loc);
|
||||||
int solo_eeprom_write(struct solo_dev *solo_dev, int loc,
|
int solo_eeprom_write(struct solo_dev *solo_dev, int loc,
|
||||||
unsigned short data);
|
__be16 data);
|
||||||
|
|
||||||
/* JPEG Qp functions */
|
/* JPEG Qp functions */
|
||||||
void solo_s_jpeg_qp(struct solo_dev *solo_dev, unsigned int ch,
|
void solo_s_jpeg_qp(struct solo_dev *solo_dev, unsigned int ch,
|
||||||
|
|
Loading…
Reference in New Issue