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

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Sakari Ailus and committed by
Greg Kroah-Hartman
9f0b086c a3a8c9c1

+4 -4
+4 -4
drivers/usb/misc/usb-ljca.c
··· 165 165 }; 166 166 167 167 static const struct acpi_device_id ljca_gpio_hids[] = { 168 + { "INTC100B" }, 168 169 { "INTC1074" }, 169 170 { "INTC1096" }, 170 - { "INTC100B" }, 171 - { "INTC10D1" }, 172 171 { "INTC10B5" }, 172 + { "INTC10D1" }, 173 173 {}, 174 174 }; 175 175 176 176 static const struct acpi_device_id ljca_i2c_hids[] = { 177 + { "INTC100C" }, 177 178 { "INTC1075" }, 178 179 { "INTC1097" }, 179 - { "INTC100C" }, 180 180 { "INTC10D2" }, 181 181 {}, 182 182 }; 183 183 184 184 static const struct acpi_device_id ljca_spi_hids[] = { 185 + { "INTC100D" }, 185 186 { "INTC1091" }, 186 187 { "INTC1098" }, 187 - { "INTC100D" }, 188 188 { "INTC10D3" }, 189 189 {}, 190 190 };