Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: si521xx: Use i2c_get_match_data() instead of device_get_match_data()

The device_get_match_data(), is to get match data for firmware interfaces
such as just OF/ACPI. This driver has I2C matching table as well. Use
i2c_get_match_data() to get match data for I2C, ACPI and DT-based
matching.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20230909152847.16216-1-biju.das.jz@bp.renesas.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Biju Das and committed by
Stephen Boyd
ebcae17f bbc5080b

+1 -1
+1 -1
drivers/clk/clk-si521xx.c
··· 279 279 280 280 static int si521xx_probe(struct i2c_client *client) 281 281 { 282 - const u16 chip_info = (u16)(uintptr_t)device_get_match_data(&client->dev); 282 + const u16 chip_info = (u16)(uintptr_t)i2c_get_match_data(client); 283 283 const struct clk_parent_data clk_parent_data = { .index = 0 }; 284 284 struct si521xx *si; 285 285 unsigned char name[6] = "DIFF0";