Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1552fb34 authored by Frank Schaefer's avatar Frank Schaefer Committed by Mauro Carvalho Chehab
Browse files

[media] em28xx: add a missing le16_to_cpu conversion



commit 61ff5d69 "em28xx: improve em2710/em2820 distinction" missed the
le16_to_cpu conversion of the USB vendor ID.

Signed-off-by: default avatarFrank Schäfer <fschaefer.oss@googlemail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 16af690f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2910,7 +2910,8 @@ static int em28xx_init_dev(struct em28xx *dev, struct usb_device *udev,
			break;
		case CHIP_ID_EM2820:
			chip_name = "em2710/2820";
			if (dev->udev->descriptor.idVendor == 0xeb1a) {
			if (le16_to_cpu(dev->udev->descriptor.idVendor)
								    == 0xeb1a) {
				__le16 idProd = dev->udev->descriptor.idProduct;
				if (le16_to_cpu(idProd) == 0x2710)
					chip_name = "em2710";