Skip to content

Commit

Permalink
clk: si5351: declare all device IDs for module loading
Browse files Browse the repository at this point in the history
When the si5351 driver is a kernel module, it is loaded into memory
from its i2c device IDs, but not from its DT compatible properties.

This patch declares the i2c device IDs of all chip variants.

Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Acked-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
  • Loading branch information
Jean-Francois Moine authored and Mike Turquette committed May 29, 2013
1 parent 4f985b4 commit 9807362
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/clk/clk-si5351.c
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,10 @@ static int si5351_i2c_probe(struct i2c_client *client,
}

static const struct i2c_device_id si5351_i2c_ids[] = {
{ "silabs,si5351", 0 },
{ "si5351a", 0 },
{ "si5351a-msop", 0 },
{ "si5351b", 0 },
{ "si5351c", 0 },
{ }
};
MODULE_DEVICE_TABLE(i2c, si5351_i2c_ids);
Expand Down

0 comments on commit 9807362

Please sign in to comment.