diff options
Diffstat (limited to 'drivers/media/video/mt9m001.c')
-rw-r--r-- | drivers/media/video/mt9m001.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/mt9m001.c b/drivers/media/video/mt9m001.c index e81b3247f79..1a1a1245367 100644 --- a/drivers/media/video/mt9m001.c +++ b/drivers/media/video/mt9m001.c | |||
@@ -590,7 +590,7 @@ static int mt9m001_video_probe(struct soc_camera_device *icd) | |||
590 | return -ENODEV; | 590 | return -ENODEV; |
591 | 591 | ||
592 | /* Enable the chip */ | 592 | /* Enable the chip */ |
593 | data = reg_write(&mt9m001->icd, MT9M001_CHIP_ENABLE, 1); | 593 | data = reg_write(icd, MT9M001_CHIP_ENABLE, 1); |
594 | dev_dbg(&icd->dev, "write: %d\n", data); | 594 | dev_dbg(&icd->dev, "write: %d\n", data); |
595 | 595 | ||
596 | /* Read out the chip version register */ | 596 | /* Read out the chip version register */ |
@@ -642,8 +642,8 @@ static void mt9m001_video_remove(struct soc_camera_device *icd) | |||
642 | struct mt9m001 *mt9m001 = container_of(icd, struct mt9m001, icd); | 642 | struct mt9m001 *mt9m001 = container_of(icd, struct mt9m001, icd); |
643 | 643 | ||
644 | dev_dbg(&icd->dev, "Video %x removed: %p, %p\n", mt9m001->client->addr, | 644 | dev_dbg(&icd->dev, "Video %x removed: %p, %p\n", mt9m001->client->addr, |
645 | mt9m001->icd.dev.parent, mt9m001->icd.vdev); | 645 | icd->dev.parent, icd->vdev); |
646 | soc_camera_video_stop(&mt9m001->icd); | 646 | soc_camera_video_stop(icd); |
647 | } | 647 | } |
648 | 648 | ||
649 | static int mt9m001_probe(struct i2c_client *client, | 649 | static int mt9m001_probe(struct i2c_client *client, |