From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Ribalda Delgado Subject: [PATCH 16/19] serdev: ttyport: Move serport structure to its own header Date: Tue, 29 May 2018 15:10:11 +0200 Message-ID: <20180529131014.18641-17-ricardo.ribalda@gmail.com> References: <20180529131014.18641-1-ricardo.ribalda@gmail.com> Return-path: In-Reply-To: <20180529131014.18641-1-ricardo.ribalda@gmail.com> Sender: linux-kernel-owner@vger.kernel.org To: linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org Cc: Ricardo Ribalda Delgado , Rob Herring , Johan Hovold , Greg Kroah-Hartman , Jiri Slaby List-Id: linux-serial@vger.kernel.org This way we can reuse this structure in other modules. Cc: Rob Herring Cc: Johan Hovold Cc: Greg Kroah-Hartman Cc: Jiri Slaby Signed-off-by: Ricardo Ribalda Delgado --- drivers/tty/serdev/serdev-ttyport.c | 9 +-------- drivers/tty/serdev/serport.h | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 drivers/tty/serdev/serport.h diff --git a/drivers/tty/serdev/serdev-ttyport.c b/drivers/tty/serdev/serdev-ttyport.c index fa1672993b4c..4acc5f41dc67 100644 --- a/drivers/tty/serdev/serdev-ttyport.c +++ b/drivers/tty/serdev/serdev-ttyport.c @@ -7,17 +7,10 @@ #include #include #include +#include "serport.h" #define SERPORT_ACTIVE 1 -struct serport { - struct tty_port *port; - struct tty_struct *tty; - struct tty_driver *tty_drv; - int tty_idx; - unsigned long flags; -}; - /* * Callback functions from the tty port. */ diff --git a/drivers/tty/serdev/serport.h b/drivers/tty/serdev/serport.h new file mode 100644 index 000000000000..15bc1ff6326e --- /dev/null +++ b/drivers/tty/serdev/serport.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (C) 2016-2017 Linaro Ltd., Rob Herring + */ +#ifndef _SERPORT_H +#define _SERPORT_H + +struct serport { + struct tty_port *port; + struct tty_struct *tty; + struct tty_driver *tty_drv; + int tty_idx; + unsigned long flags; +}; + +#endif -- 2.17.0