Skip to content

Commit 3ed50d7

Browse files
IoanaCiorneilag-linaro
authored andcommitted
mfd: simple-mfd-i2c: Keep compatible strings in alphabetical order
Reorder the of_device_id structures so that they are in alphabetical order. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: Lee Jones <lee@kernel.org>
1 parent 02dde2c commit 3ed50d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/mfd/simple-mfd-i2c.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ static const struct simple_mfd_data spacemit_p1 = {
110110
};
111111

112112
static const struct of_device_id simple_mfd_i2c_of_match[] = {
113+
{ .compatible = "fsl,ls1028aqds-fpga" },
114+
{ .compatible = "fsl,lx2160aqds-fpga" },
113115
{ .compatible = "kontron,sl28cpld" },
114-
{ .compatible = "silergy,sy7636a", .data = &silergy_sy7636a},
115116
{ .compatible = "maxim,max5970", .data = &maxim_max5970},
116117
{ .compatible = "maxim,max5978", .data = &maxim_max5970},
117118
{ .compatible = "maxim,max77705-battery", .data = &maxim_mon_max77705},
118-
{ .compatible = "fsl,lx2160aqds-fpga" },
119-
{ .compatible = "fsl,ls1028aqds-fpga" },
119+
{ .compatible = "silergy,sy7636a", .data = &silergy_sy7636a},
120120
{ .compatible = "spacemit,p1", .data = &spacemit_p1, },
121121
{}
122122
};

0 commit comments

Comments
 (0)