From: Geert Uytterhoeven Date: Wed, 15 Sep 2021 12:58:34 +0000 (+0200) Subject: serial: 8250_fsl: Move fsl8250_data to ACPI section X-Git-Tag: v5.16-rc1~117^2~71 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=28f5cb3715006bc8c4be25170b513d8c81590379;p=thirdparty%2Fkernel%2Flinux.git serial: 8250_fsl: Move fsl8250_data to ACPI section The fsl8250_data structure is only used by ACPI support. Hence move its definition to the driver's ACPI section. Signed-off-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/e406730a5eab880448d6bb55fbce492d281034ef.1631710623.git.geert+renesas@glider.be Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/8250/8250_fsl.c b/drivers/tty/serial/8250/8250_fsl.c index fc65a2293ce9e..9c01c531349df 100644 --- a/drivers/tty/serial/8250/8250_fsl.c +++ b/drivers/tty/serial/8250/8250_fsl.c @@ -23,10 +23,6 @@ #include "8250.h" -struct fsl8250_data { - int line; -}; - int fsl8250_handle_irq(struct uart_port *port) { unsigned char lsr, orig_lsr; @@ -90,6 +86,10 @@ int fsl8250_handle_irq(struct uart_port *port) EXPORT_SYMBOL_GPL(fsl8250_handle_irq); #ifdef CONFIG_ACPI +struct fsl8250_data { + int line; +}; + static int fsl8250_acpi_probe(struct platform_device *pdev) { struct fsl8250_data *data;