Commit 0a861e9e authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Paul Mundt

soc-camera: unify i2c camera device platform data

Unify i2c camera device platform data to point to struct soc_camera_link
for a smooth transition to soc-camera as a platform driver.
Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent f73c8f53
...@@ -417,7 +417,7 @@ static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = { ...@@ -417,7 +417,7 @@ static struct i2c_board_info __initdata ap325rxa_i2c_devices[] = {
}, },
{ {
I2C_BOARD_INFO("ov772x", 0x21), I2C_BOARD_INFO("ov772x", 0x21),
.platform_data = &ov7725_info, .platform_data = &ov7725_info.link,
}, },
}; };
......
...@@ -430,11 +430,11 @@ static struct i2c_board_info migor_i2c_devices[] = { ...@@ -430,11 +430,11 @@ static struct i2c_board_info migor_i2c_devices[] = {
}, },
{ {
I2C_BOARD_INFO("ov772x", 0x21), I2C_BOARD_INFO("ov772x", 0x21),
.platform_data = &ov7725_info, .platform_data = &ov7725_info.link,
}, },
{ {
I2C_BOARD_INFO("tw9910", 0x45), I2C_BOARD_INFO("tw9910", 0x45),
.platform_data = &tw9910_info, .platform_data = &tw9910_info.link,
}, },
}; };
......
...@@ -1067,10 +1067,12 @@ static int ov772x_probe(struct i2c_client *client, ...@@ -1067,10 +1067,12 @@ static int ov772x_probe(struct i2c_client *client,
struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent); struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
int ret; int ret;
info = client->dev.platform_data; if (!client->dev.platform_data)
if (!info)
return -EINVAL; return -EINVAL;
info = container_of(client->dev.platform_data,
struct ov772x_camera_info, link);
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
dev_err(&adapter->dev, dev_err(&adapter->dev,
"I2C-Adapter doesn't support " "I2C-Adapter doesn't support "
......
...@@ -875,10 +875,12 @@ static int tw9910_probe(struct i2c_client *client, ...@@ -875,10 +875,12 @@ static int tw9910_probe(struct i2c_client *client,
const struct tw9910_scale_ctrl *scale; const struct tw9910_scale_ctrl *scale;
int i, ret; int i, ret;
info = client->dev.platform_data; if (!client->dev.platform_data)
if (!info)
return -EINVAL; return -EINVAL;
info = container_of(client->dev.platform_data,
struct tw9910_video_info, link);
if (!i2c_check_functionality(to_i2c_adapter(client->dev.parent), if (!i2c_check_functionality(to_i2c_adapter(client->dev.parent),
I2C_FUNC_SMBUS_BYTE_DATA)) { I2C_FUNC_SMBUS_BYTE_DATA)) {
dev_err(&client->dev, dev_err(&client->dev,
......
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