diff options
author | Krzysztof Kozlowski <[email protected]> | 2022-03-08 08:41:57 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2022-03-18 13:18:25 +0100 |
commit | dffa58b64cca6ca266bc0310d8e6b27abd1f8048 (patch) | |
tree | 429770df653180d51b3c6e2a0b78515cde48b78a | |
parent | 0dc0da881b4574d1e04a079ab2ea75da61f5ad2e (diff) |
serial: 8250_tegra: mark acpi_device_id as unused with !ACPI
The driver's acpi_device_id table is referenced via ACPI_PTR() so it
will be unused for !CONFIG_ACPI builds:
drivers/tty/serial/8250/8250_tegra.c:178:36:
warning: ‘tegra_uart_acpi_match’ defined but not used [-Wunused-const-variable=]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/8250/8250_tegra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_tegra.c b/drivers/tty/serial/8250/8250_tegra.c index e13ae18b0713..e7cddeec9d8e 100644 --- a/drivers/tty/serial/8250/8250_tegra.c +++ b/drivers/tty/serial/8250/8250_tegra.c @@ -175,7 +175,7 @@ static const struct of_device_id tegra_uart_of_match[] = { }; MODULE_DEVICE_TABLE(of, tegra_uart_of_match); -static const struct acpi_device_id tegra_uart_acpi_match[] = { +static const struct acpi_device_id tegra_uart_acpi_match[] __maybe_unused = { { "NVDA0100", 0 }, { }, }; |