Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/bridge: it66121: Sort the compatibles

Keep the compatibles sorted alpha-numerically.

Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20251029150636.3118628-4-nm@ti.com

authored by

Nishanth Menon and committed by
Neil Armstrong
a1df28b5 1ba36afa

+3 -3
+3 -3
drivers/gpu/drm/bridge/ite-it66121.c
··· 1619 1619 }; 1620 1620 1621 1621 static const struct of_device_id it66121_dt_match[] = { 1622 - { .compatible = "ite,it66121", &it66121_chip_info }, 1623 1622 { .compatible = "ite,it6610", &it6610_chip_info }, 1623 + { .compatible = "ite,it66121", &it66121_chip_info }, 1624 1624 { } 1625 1625 }; 1626 1626 MODULE_DEVICE_TABLE(of, it66121_dt_match); 1627 1627 1628 1628 static const struct i2c_device_id it66121_id[] = { 1629 - { "it66121", (kernel_ulong_t) &it66121_chip_info }, 1630 - { "it6610", (kernel_ulong_t) &it6610_chip_info }, 1629 + { "it6610", (kernel_ulong_t)&it6610_chip_info }, 1630 + { "it66121", (kernel_ulong_t)&it66121_chip_info }, 1631 1631 { } 1632 1632 }; 1633 1633 MODULE_DEVICE_TABLE(i2c, it66121_id);