summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSakari Ailus <sakari.ailus@linux.intel.com>2025-10-10 08:56:24 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2025-10-13 09:35:28 +0200
commit9f0b086cd51c5a66e7483e06665103a2aa417cdc (patch)
tree71432a87fab74ec31d1ae216e31fcd7965336c4a
parenta3a8c9c18f6904a777ff21f300d3da8c2b214c80 (diff)
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 <sakari.ailus@linux.intel.com> Reviewed-by: Hans de Goede <hansg@kernel.org> Link: https://lore.kernel.org/r/20251010055625.4147844-1-sakari.ailus@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/misc/usb-ljca.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/misc/usb-ljca.c b/drivers/usb/misc/usb-ljca.c
index 1846156c0800..dc2ad31ae152 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" },
{},
};