Skip to content

Commit 205447f

Browse files
jhovoldgroeck
authored andcommitted
hwmon: (pmbus/xdpe12284) fix typo in compatible strings
Make sure that the driver compatible strings matches the binding by removing the space between the manufacturer and model. Fixes: aaafb7c ("hwmon: (pmbus) Add support for Infineon Multi-phase xdpe122 family controllers") Cc: Vadim Pasternak <[email protected]> Signed-off-by: Johan Hovold <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]>
1 parent cf2b012 commit 205447f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/hwmon/pmbus/xdpe12284.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ static const struct i2c_device_id xdpe122_id[] = {
9494
MODULE_DEVICE_TABLE(i2c, xdpe122_id);
9595

9696
static const struct of_device_id __maybe_unused xdpe122_of_match[] = {
97-
{.compatible = "infineon, xdpe12254"},
98-
{.compatible = "infineon, xdpe12284"},
97+
{.compatible = "infineon,xdpe12254"},
98+
{.compatible = "infineon,xdpe12284"},
9999
{}
100100
};
101101
MODULE_DEVICE_TABLE(of, xdpe122_of_match);

0 commit comments

Comments
 (0)