summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/tveeprom.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux/drivers/media/video/tveeprom.c')
-rw-r--r--linux/drivers/media/video/tveeprom.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/video/tveeprom.c b/linux/drivers/media/video/tveeprom.c
index 0bba7d25f..9c3638c18 100644
--- a/linux/drivers/media/video/tveeprom.c
+++ b/linux/drivers/media/video/tveeprom.c
@@ -512,6 +512,8 @@ tveeprom_detect_client(struct i2c_adapter *adapter,
{
struct i2c_client *client;
+ dprintk(1,"%s: id 0x%x @ 0x%x\n",__FUNCTION__,
+ adapter->id, address << 1);
client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL);
if (client == 0)
return -ENOMEM;
@@ -527,6 +529,7 @@ tveeprom_detect_client(struct i2c_adapter *adapter,
static int
tveeprom_attach_adapter (struct i2c_adapter *adapter)
{
+ dprintk(1,"%s: id 0x%x\n",__FUNCTION__,adapter->id);
if (adapter->id != (I2C_ALGO_BIT | I2C_HW_B_BT848))
return 0;
return i2c_probe(adapter, &addr_data, tveeprom_detect_client);