Skip to content

Commit

Permalink
leds: lp5562: Properly setup of_device_id table
Browse files Browse the repository at this point in the history
Don't mix of_device_id entry in i2c_device_id table.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
  • Loading branch information
Axel Lin authored and Bryan Wu committed Jun 20, 2013
1 parent 33c88b6 commit 28720cf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion drivers/leds/leds-lp5562.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,14 +587,23 @@ static int lp5562_remove(struct i2c_client *client)

static const struct i2c_device_id lp5562_id[] = {
{ "lp5562", 0 },
{ "ti,lp5562", 0 }, /* OF compatible */
{ }
};
MODULE_DEVICE_TABLE(i2c, lp5562_id);

#ifdef CONFIG_OF
static const struct of_device_id of_lp5562_leds_match[] = {
{ .compatible = "ti,lp5562", },
{},
};

MODULE_DEVICE_TABLE(of, of_lp5562_leds_match);
#endif

static struct i2c_driver lp5562_driver = {
.driver = {
.name = "lp5562",
.of_match_table = of_match_ptr(of_lp5562_leds_match),
},
.probe = lp5562_probe,
.remove = lp5562_remove,
Expand Down

0 comments on commit 28720cf

Please sign in to comment.