Commit 9f0b086c authored by Sakari Ailus's avatar Sakari Ailus Committed by Greg Kroah-Hartman
Browse files

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: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: default avatarHans de Goede <hansg@kernel.org>
Link: https://lore.kernel.org/r/20251010055625.4147844-1-sakari.ailus@linux.intel.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a3a8c9c1
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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" },
	{},
};