Commit f09fb530 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (9641): Add chip ID's for em2820 and em2840

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 80297125
......@@ -1355,6 +1355,12 @@ void em28xx_pre_card_setup(struct em28xx *dev)
if (rc > 0) {
dev->chip_id = rc;
switch (rc) {
case CHIP_ID_EM2820:
em28xx_info("chip ID is em2820\n");
break;
case CHIP_ID_EM2840:
em28xx_info("chip ID is em2840\n");
break;
case CHIP_ID_EM2860:
em28xx_info("chip ID is em2860\n");
break;
......
......@@ -111,6 +111,8 @@
/* FIXME: Need to be populated with the other chip ID's */
enum em28xx_chip_id {
CHIP_ID_EM2820 = 18,
CHIP_ID_EM2840 = 20,
CHIP_ID_EM2860 = 34,
CHIP_ID_EM2883 = 36,
CHIP_ID_EM2874 = 65,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment