diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2014-08-20 21:50:21 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-09-03 14:32:15 +0200 |
commit | 18d6a28ac0613d86241c7271aab3f6562d6c8995 (patch) | |
tree | 8b4a721039eb4c3bf30a679e3901894eb08eba1c /drivers/media/usb/dvb-usb/opera1.c | |
parent | [media] mxl111sf: fix sparse warnings (diff) | |
download | linux-18d6a28ac0613d86241c7271aab3f6562d6c8995.tar.xz linux-18d6a28ac0613d86241c7271aab3f6562d6c8995.zip |
[media] opera1: fix sparse warnings
drivers/media/usb/dvb-usb/opera1.c:557:29: warning: restricted __le16 degrades to integer
drivers/media/usb/dvb-usb/opera1.c:558:33: warning: restricted __le16 degrades to integer
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb/opera1.c')
-rw-r--r-- | drivers/media/usb/dvb-usb/opera1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/usb/dvb-usb/opera1.c b/drivers/media/usb/dvb-usb/opera1.c index 16ba90acf539..14a2119912ba 100644 --- a/drivers/media/usb/dvb-usb/opera1.c +++ b/drivers/media/usb/dvb-usb/opera1.c @@ -554,8 +554,8 @@ static int opera1_probe(struct usb_interface *intf, { struct usb_device *udev = interface_to_usbdev(intf); - if (udev->descriptor.idProduct == USB_PID_OPERA1_WARM && - udev->descriptor.idVendor == USB_VID_OPERA1 && + if (le16_to_cpu(udev->descriptor.idProduct) == USB_PID_OPERA1_WARM && + le16_to_cpu(udev->descriptor.idVendor) == USB_VID_OPERA1 && opera1_xilinx_load_firmware(udev, "dvb-usb-opera1-fpga-01.fw") != 0 ) { return -EINVAL; |