TTY: simserial no longer needs serialP
authorJiri Slaby <jslaby@suse.cz>
Mon, 5 Mar 2012 13:52:31 +0000 (14:52 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Mar 2012 20:48:27 +0000 (12:48 -0800)
Let's do a spin-off of serial_state structure with only needed
elements.

And remove serialP crap from includes.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/ia64/hp/sim/simserial.c
include/linux/serialP.h

index 3698a2f..120aad4 100644 (file)
 #include <linux/seq_file.h>
 #include <linux/slab.h>
 #include <linux/capability.h>
+#include <linux/circ_buf.h>
 #include <linux/console.h>
 #include <linux/module.h>
 #include <linux/serial.h>
-#include <linux/serialP.h>
 #include <linux/sysrq.h>
 
 #include <asm/irq.h>
 
 #define NR_PORTS       1       /* only one port for now */
 
+struct serial_state {
+       struct tty_port tport;
+       struct circ_buf xmit;
+       int irq;
+       int x_char;
+};
+
 static char *serial_name = "SimSerial driver";
 static char *serial_version = "0.6";
 
index e5e8442..9a04dec 100644 (file)
@@ -44,10 +44,8 @@ struct serial_state {
        int                     quot;
        int                     IER;    /* Interrupt Enable Register */
        int                     MCR;    /* Modem control register */
-       /* simserial */
        int                     x_char; /* xon/xoff character */
        struct circ_buf         xmit;
-       /* /simserial */
        /* /amiserial */
 };