From: Sakari Ailus Date: Fri, 10 Oct 2025 05:56:24 +0000 (+0300) Subject: usb: ljca: Order ACPI hardware IDs alphabetically X-Git-Tag: v6.19-rc1~63^2~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f0b086cd51c5a66e7483e06665103a2aa417cdc;p=thirdparty%2Flinux.git usb: ljca: Order ACPI hardware IDs alphabetically The driver has three lists of ACPI hardware IDs, for GPIO, I²C and SPI. Order them alphabetically. Signed-off-by: Sakari Ailus Reviewed-by: Hans de Goede Link: https://lore.kernel.org/r/20251010055625.4147844-1-sakari.ailus@linux.intel.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/misc/usb-ljca.c b/drivers/usb/misc/usb-ljca.c index 1846156c0800f..dc2ad31ae1524 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" }, {}, };