diff options
author | Cixi Geng <cixi.geng1@unisoc.com> | 2022-04-27 15:52:12 +0800 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2022-04-27 10:33:11 +0100 |
commit | d95ab6d2afdcbcd18d9b236219bcc666446f324c (patch) | |
tree | 70a0c117fb6840b9a5658f3d1c8f707868f6bfcf /drivers/mfd | |
parent | 875709f9787c7ee48a7539d2d578f09cbdba7380 (diff) | |
download | linux-d95ab6d2afdcbcd18d9b236219bcc666446f324c.tar.bz2 |
mfd: sprd: Jugle {of,spi}_device_id tables into numerical order
Ordered with the smallest number at the top.
Signed-off-by: Cixi Geng <cixi.geng1@unisoc.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20220427075212.3409407-1-gengcixi@gmail.com
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/sprd-sc27xx-spi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/sprd-sc27xx-spi.c b/drivers/mfd/sprd-sc27xx-spi.c index cf4f89114ae4..d05a47c5187f 100644 --- a/drivers/mfd/sprd-sc27xx-spi.c +++ b/drivers/mfd/sprd-sc27xx-spi.c @@ -240,15 +240,15 @@ static int sprd_pmic_resume(struct device *dev) static SIMPLE_DEV_PM_OPS(sprd_pmic_pm_ops, sprd_pmic_suspend, sprd_pmic_resume); static const struct of_device_id sprd_pmic_match[] = { - { .compatible = "sprd,sc2731", .data = &sc2731_data }, { .compatible = "sprd,sc2730", .data = &sc2730_data }, + { .compatible = "sprd,sc2731", .data = &sc2731_data }, {}, }; MODULE_DEVICE_TABLE(of, sprd_pmic_match); static const struct spi_device_id sprd_pmic_spi_ids[] = { - { .name = "sc2731", .driver_data = (unsigned long)&sc2731_data }, { .name = "sc2730", .driver_data = (unsigned long)&sc2730_data }, + { .name = "sc2731", .driver_data = (unsigned long)&sc2731_data }, {}, }; MODULE_DEVICE_TABLE(spi, sprd_pmic_spi_ids); |