summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2020-11-10 18:48:40 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-11-12 09:44:22 +0100
commit1f78ae99790812481b7944cf40008aed5fd2ef18 (patch)
treeca346778767cbd12c633ae171b239f59e5146198 /include
parentcb215da8369cbbbe3b6260b2ca43518f884ddc6b (diff)
downloadlinux-stable-1f78ae99790812481b7944cf40008aed5fd2ef18.tar.gz
linux-stable-1f78ae99790812481b7944cf40008aed5fd2ef18.tar.bz2
linux-stable-1f78ae99790812481b7944cf40008aed5fd2ef18.zip
serial: imx: Remove unused platform data support
Since 5.10-rc1 i.MX is a devicetree-only platform and the existing platform data support in this driver was only useful for old non-devicetree platforms. Get rid of the platform data support since it is no longer used. Reviewed-by: Fugang Duan <fugang.duan@nxp.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Fabio Estevam <festevam@gmail.com> Link: https://lore.kernel.org/r/20201110214840.16768-1-festevam@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/platform_data/serial-imx.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/platform_data/serial-imx.h b/include/linux/platform_data/serial-imx.h
deleted file mode 100644
index 0844b21372c7..000000000000
--- a/include/linux/platform_data/serial-imx.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * Copyright (C) 2008 by Sascha Hauer <kernel@pengutronix.de>
- */
-
-#ifndef ASMARM_ARCH_UART_H
-#define ASMARM_ARCH_UART_H
-
-#define IMXUART_HAVE_RTSCTS (1<<0)
-
-struct imxuart_platform_data {
- unsigned int flags;
-};
-
-#endif