Linux USB
 help / color / mirror / Atom feed
* [PATCH 1/2] usb: ljca: Order ACPI hardware IDs alphabetically
@ 2025-10-10  5:56 Sakari Ailus
  2025-10-10  5:56 ` [PATCH 2/2] usb: ljca: Improve ACPI hardware ID documentation Sakari Ailus
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Sakari Ailus @ 2025-10-10  5:56 UTC (permalink / raw)
  To: linux-usb; +Cc: Lixu Zhang, Greg Kroah-Hartman, Hans de Goede

The driver has three lists of ACPI hardware IDs, for GPIO, I²C and SPI.
Order them alphabetically.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
---
 drivers/usb/misc/usb-ljca.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/usb/misc/usb-ljca.c b/drivers/usb/misc/usb-ljca.c
index c562630d862c..cf01cc727685 100644
--- a/drivers/usb/misc/usb-ljca.c
+++ b/drivers/usb/misc/usb-ljca.c
@@ -165,26 +165,26 @@ struct ljca_match_ids_walk_data {
 };
 
 static const struct acpi_device_id ljca_gpio_hids[] = {
+	{ "INTC100B" },
 	{ "INTC1074" },
 	{ "INTC1096" },
-	{ "INTC100B" },
-	{ "INTC10D1" },
 	{ "INTC10B5" },
+	{ "INTC10D1" },
 	{},
 };
 
 static const struct acpi_device_id ljca_i2c_hids[] = {
+	{ "INTC100C" },
 	{ "INTC1075" },
 	{ "INTC1097" },
-	{ "INTC100C" },
 	{ "INTC10D2" },
 	{},
 };
 
 static const struct acpi_device_id ljca_spi_hids[] = {
+	{ "INTC100D" },
 	{ "INTC1091" },
 	{ "INTC1098" },
-	{ "INTC100D" },
 	{ "INTC10D3" },
 	{},
 };
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-10-13  7:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-10  5:56 [PATCH 1/2] usb: ljca: Order ACPI hardware IDs alphabetically Sakari Ailus
2025-10-10  5:56 ` [PATCH 2/2] usb: ljca: Improve ACPI hardware ID documentation Sakari Ailus
2025-10-10 13:42   ` Hans de Goede
2025-10-10 13:42 ` [PATCH 1/2] usb: ljca: Order ACPI hardware IDs alphabetically Hans de Goede
2025-10-10 14:59 ` Alan Stern
2025-10-13  7:26 ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox