serial: amba-pl011: move header content to .c
authorJiri Slaby <jslaby@suse.cz>
Thu, 19 May 2022 07:57:20 +0000 (09:57 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 May 2022 16:23:09 +0000 (18:23 +0200)
There is no point keeping the header content separated. In this case, it
is only an enum. So move the enum to the appropriate source file.

Cc: Russell King <linux@armlinux.org.uk>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20220519075720.31402-1-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/amba-pl011.c
drivers/tty/serial/amba-pl011.h [deleted file]

index 98c45a57e6e97135781e1fc7fe6759e55434e0d3..97ef41cb2721d24248a75dec91696ddf915d5168 100644 (file)
@@ -42,8 +42,6 @@
 #include <linux/io.h>
 #include <linux/acpi.h>
 
-#include "amba-pl011.h"
-
 #define UART_NR                        14
 
 #define SERIAL_AMBA_MAJOR      204
 #define UART_DR_ERROR          (UART011_DR_OE|UART011_DR_BE|UART011_DR_PE|UART011_DR_FE)
 #define UART_DUMMY_DR_RX       (1 << 16)
 
+enum {
+       REG_DR,
+       REG_ST_DMAWM,
+       REG_ST_TIMEOUT,
+       REG_FR,
+       REG_LCRH_RX,
+       REG_LCRH_TX,
+       REG_IBRD,
+       REG_FBRD,
+       REG_CR,
+       REG_IFLS,
+       REG_IMSC,
+       REG_RIS,
+       REG_MIS,
+       REG_ICR,
+       REG_DMACR,
+       REG_ST_XFCR,
+       REG_ST_XON1,
+       REG_ST_XON2,
+       REG_ST_XOFF1,
+       REG_ST_XOFF2,
+       REG_ST_ITCR,
+       REG_ST_ITIP,
+       REG_ST_ABCR,
+       REG_ST_ABIMSC,
+
+       /* The size of the array - must be last */
+       REG_ARRAY_SIZE,
+};
+
 static u16 pl011_std_offsets[REG_ARRAY_SIZE] = {
        [REG_DR] = UART01x_DR,
        [REG_FR] = UART01x_FR,
diff --git a/drivers/tty/serial/amba-pl011.h b/drivers/tty/serial/amba-pl011.h
deleted file mode 100644 (file)
index 077eb12..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef AMBA_PL011_H
-#define AMBA_PL011_H
-
-enum {
-       REG_DR,
-       REG_ST_DMAWM,
-       REG_ST_TIMEOUT,
-       REG_FR,
-       REG_LCRH_RX,
-       REG_LCRH_TX,
-       REG_IBRD,
-       REG_FBRD,
-       REG_CR,
-       REG_IFLS,
-       REG_IMSC,
-       REG_RIS,
-       REG_MIS,
-       REG_ICR,
-       REG_DMACR,
-       REG_ST_XFCR,
-       REG_ST_XON1,
-       REG_ST_XON2,
-       REG_ST_XOFF1,
-       REG_ST_XOFF2,
-       REG_ST_ITCR,
-       REG_ST_ITIP,
-       REG_ST_ABCR,
-       REG_ST_ABIMSC,
-
-       /* The size of the array - must be last */
-       REG_ARRAY_SIZE,
-};
-
-#endif