Commit 41e9b5e2 authored by Matthias Schiffer's avatar Matthias Schiffer Committed by Lee Jones

mfd: tqmx86: Fix typo in "platform"

Rename variable from "ocores_platfom_data" to "ocores_platform_data".
Signed-off-by: default avatarMatthias Schiffer <matthias.schiffer@ew.tq-group.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 16b2ad15
...@@ -76,7 +76,7 @@ static struct i2c_board_info tqmx86_i2c_devices[] = { ...@@ -76,7 +76,7 @@ static struct i2c_board_info tqmx86_i2c_devices[] = {
}, },
}; };
static struct ocores_i2c_platform_data ocores_platfom_data = { static struct ocores_i2c_platform_data ocores_platform_data = {
.num_devices = ARRAY_SIZE(tqmx86_i2c_devices), .num_devices = ARRAY_SIZE(tqmx86_i2c_devices),
.devices = tqmx86_i2c_devices, .devices = tqmx86_i2c_devices,
}; };
...@@ -84,8 +84,8 @@ static struct ocores_i2c_platform_data ocores_platfom_data = { ...@@ -84,8 +84,8 @@ static struct ocores_i2c_platform_data ocores_platfom_data = {
static const struct mfd_cell tqmx86_i2c_soft_dev[] = { static const struct mfd_cell tqmx86_i2c_soft_dev[] = {
{ {
.name = "ocores-i2c", .name = "ocores-i2c",
.platform_data = &ocores_platfom_data, .platform_data = &ocores_platform_data,
.pdata_size = sizeof(ocores_platfom_data), .pdata_size = sizeof(ocores_platform_data),
.resources = tqmx_i2c_soft_resources, .resources = tqmx_i2c_soft_resources,
.num_resources = ARRAY_SIZE(tqmx_i2c_soft_resources), .num_resources = ARRAY_SIZE(tqmx_i2c_soft_resources),
}, },
...@@ -209,7 +209,7 @@ static int tqmx86_probe(struct platform_device *pdev) ...@@ -209,7 +209,7 @@ static int tqmx86_probe(struct platform_device *pdev)
tqmx_gpio_resources[0].flags = 0; tqmx_gpio_resources[0].flags = 0;
} }
ocores_platfom_data.clock_khz = tqmx86_board_id_to_clk_rate(board_id); ocores_platform_data.clock_khz = tqmx86_board_id_to_clk_rate(board_id);
if (i2c_det == TQMX86_REG_I2C_DETECT_SOFT) { if (i2c_det == TQMX86_REG_I2C_DETECT_SOFT) {
err = devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE, err = devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
......
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