Skip to content

Commit

Permalink
V4L/DVB: Read MAC for TeVii S470 PCI-e DVB-S2 card
Browse files Browse the repository at this point in the history
This patch retrieve the correct mac address from the eeprom for TeVii
S470 card.

Signed-off-by: Pierre Gronlier <pierre.gronlier@gmail.com>
Cc: Steven Toth <stoth@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Pierre Gronlier authored and Mauro Carvalho Chehab committed May 19, 2010
1 parent 5013318 commit 16bfdaa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions drivers/media/video/cx23885/cx23885-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,22 @@ static int dvb_register(struct cx23885_tsport *port)
netup_ci_init(port);
break;
}
case CX23885_BOARD_TEVII_S470: {
u8 eeprom[256]; /* 24C02 i2c eeprom */

if (port->nr != 1)
break;

/* Read entire EEPROM */
dev->i2c_bus[0].i2c_client.addr = 0xa0 >> 1;
tveeprom_read(&dev->i2c_bus[0].i2c_client, eeprom, sizeof(eeprom));
printk(KERN_INFO "TeVii S470 MAC= "
"%02X:%02X:%02X:%02X:%02X:%02X\n",
eeprom[0xa0], eeprom[0xa1], eeprom[0xa2],
eeprom[0xa3], eeprom[0xa4], eeprom[0xa5]);
memcpy(port->frontends.adapter.proposed_mac, eeprom + 0xa0, 6);
break;
}
}

return ret;
Expand Down

0 comments on commit 16bfdaa

Please sign in to comment.