On Fri 09 Aug 00:36 PDT 2019, Vinod Koul wrote: > It helps to keep sorted order for compatibles, so sort them > > Suggested-by: Bjorn Andersson <bjorn.andersson@xxxxxxxxxx> > Signed-off-by: Vinod Koul <vkoul@xxxxxxxxxx> Reviewed-by: Bjorn Andersson <bjorn.andersson@xxxxxxxxxx> > --- > drivers/regulator/qcom-rpmh-regulator.c | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > > diff --git a/drivers/regulator/qcom-rpmh-regulator.c b/drivers/regulator/qcom-rpmh-regulator.c > index 693ffec62f3e..0ef2716da3bd 100644 > --- a/drivers/regulator/qcom-rpmh-regulator.c > +++ b/drivers/regulator/qcom-rpmh-regulator.c > @@ -878,18 +878,14 @@ static int rpmh_regulator_probe(struct platform_device *pdev) > } > > static const struct of_device_id rpmh_regulator_match_table[] = { > - { > - .compatible = "qcom,pm8998-rpmh-regulators", > - .data = pm8998_vreg_data, > - }, > - { > - .compatible = "qcom,pmi8998-rpmh-regulators", > - .data = pmi8998_vreg_data, > - }, > { > .compatible = "qcom,pm8005-rpmh-regulators", > .data = pm8005_vreg_data, > }, > + { > + .compatible = "qcom,pm8009-rpmh-regulators", > + .data = pm8009_vreg_data, > + }, > { > .compatible = "qcom,pm8150-rpmh-regulators", > .data = pm8150_vreg_data, > @@ -899,8 +895,12 @@ static const struct of_device_id rpmh_regulator_match_table[] = { > .data = pm8150l_vreg_data, > }, > { > - .compatible = "qcom,pm8009-rpmh-regulators", > - .data = pm8009_vreg_data, > + .compatible = "qcom,pm8998-rpmh-regulators", > + .data = pm8998_vreg_data, > + }, > + { > + .compatible = "qcom,pmi8998-rpmh-regulators", > + .data = pmi8998_vreg_data, > }, > {} > }; > -- > 2.20.1 >