Commit 1d991b71 authored by H. Nikolaus Schaller's avatar H. Nikolaus Schaller Committed by Jacek Anaszewski

leds: is31fl32xx: fix typo in id and match table names

Signed-off-by: default avatarH. Nikolaus Schaller <hns@goldelico.com>
Tested-by: default avatarDavid Rivshin <drivshin@allworx.com>
Acked-by: default avatarDavid Rivshin <drivshin@allworx.com>
Signed-off-by: default avatarJacek Anaszewski <j.anaszewski@samsung.com>
parent d966c943
...@@ -422,7 +422,7 @@ static int is31fl32xx_parse_dt(struct device *dev, ...@@ -422,7 +422,7 @@ static int is31fl32xx_parse_dt(struct device *dev,
return ret; return ret;
} }
static const struct of_device_id of_is31fl31xx_match[] = { static const struct of_device_id of_is31fl32xx_match[] = {
{ .compatible = "issi,is31fl3236", .data = &is31fl3236_cdef, }, { .compatible = "issi,is31fl3236", .data = &is31fl3236_cdef, },
{ .compatible = "issi,is31fl3235", .data = &is31fl3235_cdef, }, { .compatible = "issi,is31fl3235", .data = &is31fl3235_cdef, },
{ .compatible = "issi,is31fl3218", .data = &is31fl3218_cdef, }, { .compatible = "issi,is31fl3218", .data = &is31fl3218_cdef, },
...@@ -432,7 +432,7 @@ static const struct of_device_id of_is31fl31xx_match[] = { ...@@ -432,7 +432,7 @@ static const struct of_device_id of_is31fl31xx_match[] = {
{}, {},
}; };
MODULE_DEVICE_TABLE(of, of_is31fl31xx_match); MODULE_DEVICE_TABLE(of, of_is31fl32xx_match);
static int is31fl32xx_probe(struct i2c_client *client, static int is31fl32xx_probe(struct i2c_client *client,
const struct i2c_device_id *id) const struct i2c_device_id *id)
...@@ -444,7 +444,7 @@ static int is31fl32xx_probe(struct i2c_client *client, ...@@ -444,7 +444,7 @@ static int is31fl32xx_probe(struct i2c_client *client,
int count; int count;
int ret = 0; int ret = 0;
of_dev_id = of_match_device(of_is31fl31xx_match, dev); of_dev_id = of_match_device(of_is31fl32xx_match, dev);
if (!of_dev_id) if (!of_dev_id)
return -EINVAL; return -EINVAL;
...@@ -485,20 +485,20 @@ static int is31fl32xx_remove(struct i2c_client *client) ...@@ -485,20 +485,20 @@ static int is31fl32xx_remove(struct i2c_client *client)
* i2c-core requires that id_table be non-NULL, even though * i2c-core requires that id_table be non-NULL, even though
* it is not used for DeviceTree based instantiation. * it is not used for DeviceTree based instantiation.
*/ */
static const struct i2c_device_id is31fl31xx_id[] = { static const struct i2c_device_id is31fl32xx_id[] = {
{}, {},
}; };
MODULE_DEVICE_TABLE(i2c, is31fl31xx_id); MODULE_DEVICE_TABLE(i2c, is31fl32xx_id);
static struct i2c_driver is31fl32xx_driver = { static struct i2c_driver is31fl32xx_driver = {
.driver = { .driver = {
.name = "is31fl32xx", .name = "is31fl32xx",
.of_match_table = of_is31fl31xx_match, .of_match_table = of_is31fl32xx_match,
}, },
.probe = is31fl32xx_probe, .probe = is31fl32xx_probe,
.remove = is31fl32xx_remove, .remove = is31fl32xx_remove,
.id_table = is31fl31xx_id, .id_table = is31fl32xx_id,
}; };
module_i2c_driver(is31fl32xx_driver); module_i2c_driver(is31fl32xx_driver);
......
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