]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mfd: simple-mfd-i2c: Keep compatible strings in alphabetical order
authorIoana Ciornei <ioana.ciornei@nxp.com>
Mon, 22 Sep 2025 14:24:19 +0000 (17:24 +0300)
committerLee Jones <lee@kernel.org>
Wed, 1 Oct 2025 09:45:58 +0000 (10:45 +0100)
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>
drivers/mfd/simple-mfd-i2c.c

index 63ac263888606158b4bd781122f397670c308634..0cca7a9044cd4b3124b03c8e50332629e522ee52 100644 (file)
@@ -110,13 +110,13 @@ static const struct simple_mfd_data spacemit_p1 = {
 };
 
 static const struct of_device_id simple_mfd_i2c_of_match[] = {
+       { .compatible = "fsl,ls1028aqds-fpga" },
+       { .compatible = "fsl,lx2160aqds-fpga" },
        { .compatible = "kontron,sl28cpld" },
-       { .compatible = "silergy,sy7636a", .data = &silergy_sy7636a},
        { .compatible = "maxim,max5970", .data = &maxim_max5970},
        { .compatible = "maxim,max5978", .data = &maxim_max5970},
        { .compatible = "maxim,max77705-battery", .data = &maxim_mon_max77705},
-       { .compatible = "fsl,lx2160aqds-fpga" },
-       { .compatible = "fsl,ls1028aqds-fpga" },
+       { .compatible = "silergy,sy7636a", .data = &silergy_sy7636a},
        { .compatible = "spacemit,p1", .data = &spacemit_p1, },
        {}
 };