iio: accel: kxcjk-1013: Move acpi_device_id table under ifdef CONFIG_ACPI
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 31 Dec 2023 18:34:52 +0000 (18:34 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Tue, 23 Jan 2024 22:06:54 +0000 (22:06 +0000)
This avoids a build warning due to the use of ACPI_PTR().
Given the driver already has APCI specific code under CONFIG_ACPI move
the table rather than removing the ACPI_PTR() call as we already
have the complexity of CONFIG_ACPI.

Dropped a pointless comma after {} terminator whilst moving the code.

Cc: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20231231183514.566609-3-jic23@kernel.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/accel/kxcjk-1013.c

index 894709286b0ccb22ff45cc0ac71729f28e06f487..c5f5b1ce7954bd2672a99b7281014e0c8e457a30 100644 (file)
@@ -422,6 +422,23 @@ static int kiox010a_dsm(struct device *dev, int fn_index)
        ACPI_FREE(obj);
        return 0;
 }
+
+static const struct acpi_device_id kx_acpi_match[] = {
+       {"KXCJ1013", KXCJK1013},
+       {"KXCJ1008", KXCJ91008},
+       {"KXCJ9000", KXCJ91008},
+       {"KIOX0008", KXCJ91008},
+       {"KIOX0009", KXTJ21009},
+       {"KIOX000A", KXCJ91008},
+       {"KIOX010A", KXCJ91008}, /* KXCJ91008 in the display of a yoga 2-in-1 */
+       {"KIOX020A", KXCJ91008}, /* KXCJ91008 in the base of a yoga 2-in-1 */
+       {"KXTJ1009", KXTJ21009},
+       {"KXJ2109",  KXTJ21009},
+       {"SMO8500",  KXCJ91008},
+       { }
+};
+MODULE_DEVICE_TABLE(acpi, kx_acpi_match);
+
 #endif
 
 static int kxcjk1013_set_mode(struct kxcjk1013_data *data,
@@ -1687,22 +1704,6 @@ static const struct dev_pm_ops kxcjk1013_pm_ops = {
                           kxcjk1013_runtime_resume, NULL)
 };
 
-static const struct acpi_device_id kx_acpi_match[] = {
-       {"KXCJ1013", KXCJK1013},
-       {"KXCJ1008", KXCJ91008},
-       {"KXCJ9000", KXCJ91008},
-       {"KIOX0008", KXCJ91008},
-       {"KIOX0009", KXTJ21009},
-       {"KIOX000A", KXCJ91008},
-       {"KIOX010A", KXCJ91008}, /* KXCJ91008 in the display of a yoga 2-in-1 */
-       {"KIOX020A", KXCJ91008}, /* KXCJ91008 in the base of a yoga 2-in-1 */
-       {"KXTJ1009", KXTJ21009},
-       {"KXJ2109",  KXTJ21009},
-       {"SMO8500",  KXCJ91008},
-       { },
-};
-MODULE_DEVICE_TABLE(acpi, kx_acpi_match);
-
 static const struct i2c_device_id kxcjk1013_id[] = {
        {"kxcjk1013", KXCJK1013},
        {"kxcj91008", KXCJ91008},