Update of /cvsroot/linuxconsole/ruby/linux/include/linux
In directory usw-pr-cvs1:/tmp/cvs-serv2658/include/linux
Modified Files:
serial_core.h
Log Message:
More serial driver updates.
Index: serial_core.h
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/serial_core.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- serial_core.h 2001/11/23 01:46:07 1.9
+++ serial_core.h 2001/12/13 04:46:52 1.10
@@ -46,7 +46,8 @@
#define PORT_AMBA 32
#define PORT_CLPS711X 33
#define PORT_SA1100 34
-#define PORT_UART00 35
+#define PORT_UART00 35
+#define PORT_21285 37
#ifdef __KERNEL__
@@ -76,6 +77,12 @@
void (*shutdown)(struct uart_port *, struct uart_info *);
void (*change_speed)(struct uart_port *, u_int cflag, u_int iflag, u_int quot);
void (*pm)(struct uart_port *, u_int state, u_int oldstate);
+ int (*set_wake)(struct uart_port *, u_int state);
+
+ /*
+ * Return a string describing the type of the port
+ */
+ const char *(*type)(struct uart_port *);
/*
* Release IO and memory resources used by the port.
|