Commit 42ac6998 authored by Christophe Leroy's avatar Christophe Leroy Committed by Greg Kroah-Hartman
Browse files

serial: cpm_uart: Stop using fs_uart_id enum



Using an enum indirection to define numeric macros is
pointless. Directly use the wanted numeric value.

Signed-off-by: default avatarChristophe Leroy <christophe.leroy@csgroup.eu>
Link: https://lore.kernel.org/r/4772d2a21894db443fe42836421eb22206a334aa.1691068700.git.christophe.leroy@csgroup.eu


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b5f405e5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@
#define CPM_UART_H

#include <linux/platform_device.h>
#include <linux/fs_uart_pd.h>

struct gpio_desc;

@@ -28,7 +27,7 @@ struct gpio_desc;
#define FLAG_SMC	0x00000002
#define FLAG_CONSOLE	0x00000001

#define UART_NR		fs_uart_nr
#define UART_NR		6

#define RX_NUM_FIFO	4
#define RX_BUF_SIZE	32
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@
#include <linux/device.h>
#include <linux/memblock.h>
#include <linux/dma-mapping.h>
#include <linux/fs_uart_pd.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
#include <linux/of_platform.h>