]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
pinctrl: qcom/pinctrl-spmi-gpio: Arrange compatibles alphabetically
authorBhupesh Sharma <bhupesh.sharma@linaro.org>
Tue, 29 Jun 2021 12:34:06 +0000 (18:04 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 23 Jul 2021 16:20:32 +0000 (18:20 +0200)
Arrange the compatibles inside qcom pinctrl-spmi gpio driver
alphabetically.

Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Bjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Bhupesh Sharma <bhupesh.sharma@linaro.org>
Link: https://lore.kernel.org/r/20210629123407.82561-4-bhupesh.sharma@linaro.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/qcom/pinctrl-spmi-gpio.c

index a89d24a040af817993cea9ebe87c8321ffab3933..5246ea09c295d167a707a9d54c4ed2a0bfc83a30 100644 (file)
@@ -1104,23 +1104,15 @@ static int pmic_gpio_remove(struct platform_device *pdev)
 }
 
 static const struct of_device_id pmic_gpio_of_match[] = {
-       { .compatible = "qcom,pm8005-gpio", .data = (void *) 4 },
-       { .compatible = "qcom,pm8916-gpio", .data = (void *) 4 },
-       { .compatible = "qcom,pm8941-gpio", .data = (void *) 36 },
-       /* pm8950 has 8 GPIOs with holes on 3 */
-       { .compatible = "qcom,pm8950-gpio", .data = (void *) 8 },
-       { .compatible = "qcom,pmi8950-gpio", .data = (void *) 2 },
-       { .compatible = "qcom,pm8994-gpio", .data = (void *) 22 },
-       { .compatible = "qcom,pmi8994-gpio", .data = (void *) 10 },
-       { .compatible = "qcom,pm8998-gpio", .data = (void *) 26 },
-       { .compatible = "qcom,pmi8998-gpio", .data = (void *) 14 },
-       { .compatible = "qcom,pma8084-gpio", .data = (void *) 22 },
-       /* pms405 has 12 GPIOs with holes on 1, 9, and 10 */
-       { .compatible = "qcom,pms405-gpio", .data = (void *) 12 },
        /* pm660 has 13 GPIOs with holes on 1, 5, 6, 7, 8 and 10 */
        { .compatible = "qcom,pm660-gpio", .data = (void *) 13 },
        /* pm660l has 12 GPIOs with holes on 1, 2, 10, 11 and 12 */
        { .compatible = "qcom,pm660l-gpio", .data = (void *) 12 },
+       { .compatible = "qcom,pm6150-gpio", .data = (void *) 10 },
+       { .compatible = "qcom,pm6150l-gpio", .data = (void *) 12 },
+       { .compatible = "qcom,pm7325-gpio", .data = (void *) 10 },
+       { .compatible = "qcom,pm8005-gpio", .data = (void *) 4 },
+       { .compatible = "qcom,pm8008-gpio", .data = (void *) 2 },
        /* pm8150 has 10 GPIOs with holes on 2, 5, 7 and 8 */
        { .compatible = "qcom,pm8150-gpio", .data = (void *) 10 },
        /* pm8150b has 12 GPIOs with holes on 3, r and 7 */
@@ -1130,13 +1122,21 @@ static const struct of_device_id pmic_gpio_of_match[] = {
        { .compatible = "qcom,pm8350-gpio", .data = (void *) 10 },
        { .compatible = "qcom,pm8350b-gpio", .data = (void *) 8 },
        { .compatible = "qcom,pm8350c-gpio", .data = (void *) 9 },
+       { .compatible = "qcom,pm8916-gpio", .data = (void *) 4 },
+       { .compatible = "qcom,pm8941-gpio", .data = (void *) 36 },
+       /* pm8950 has 8 GPIOs with holes on 3 */
+       { .compatible = "qcom,pm8950-gpio", .data = (void *) 8 },
+       { .compatible = "qcom,pm8994-gpio", .data = (void *) 22 },
+       { .compatible = "qcom,pm8998-gpio", .data = (void *) 26 },
+       { .compatible = "qcom,pma8084-gpio", .data = (void *) 22 },
+       { .compatible = "qcom,pmi8950-gpio", .data = (void *) 2 },
+       { .compatible = "qcom,pmi8994-gpio", .data = (void *) 10 },
+       { .compatible = "qcom,pmi8998-gpio", .data = (void *) 14 },
        { .compatible = "qcom,pmk8350-gpio", .data = (void *) 4 },
-       { .compatible = "qcom,pm7325-gpio", .data = (void *) 10 },
        { .compatible = "qcom,pmr735a-gpio", .data = (void *) 4 },
        { .compatible = "qcom,pmr735b-gpio", .data = (void *) 4 },
-       { .compatible = "qcom,pm6150-gpio", .data = (void *) 10 },
-       { .compatible = "qcom,pm6150l-gpio", .data = (void *) 12 },
-       { .compatible = "qcom,pm8008-gpio", .data = (void *) 2 },
+       /* pms405 has 12 GPIOs with holes on 1, 9, and 10 */
+       { .compatible = "qcom,pms405-gpio", .data = (void *) 12 },
        /* pmx55 has 11 GPIOs with holes on 3, 7, 10, 11 */
        { .compatible = "qcom,pmx55-gpio", .data = (void *) 11 },
        { },