diff options
Diffstat (limited to 'drivers/serial/sa1100.c')
-rw-r--r-- | drivers/serial/sa1100.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/serial/sa1100.c b/drivers/serial/sa1100.c index 62b38582f5e9..b24a25ea6bc5 100644 --- a/drivers/serial/sa1100.c +++ b/drivers/serial/sa1100.c | |||
@@ -20,9 +20,6 @@ | |||
20 | * You should have received a copy of the GNU General Public License | 20 | * You should have received a copy of the GNU General Public License |
21 | * along with this program; if not, write to the Free Software | 21 | * along with this program; if not, write to the Free Software |
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
23 | * | ||
24 | * $Id: sa1100.c,v 1.50 2002/07/29 14:41:04 rmk Exp $ | ||
25 | * | ||
26 | */ | 23 | */ |
27 | 24 | ||
28 | #if defined(CONFIG_SERIAL_SA1100_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) | 25 | #if defined(CONFIG_SERIAL_SA1100_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) |
@@ -42,7 +39,7 @@ | |||
42 | 39 | ||
43 | #include <asm/io.h> | 40 | #include <asm/io.h> |
44 | #include <asm/irq.h> | 41 | #include <asm/irq.h> |
45 | #include <asm/hardware.h> | 42 | #include <mach/hardware.h> |
46 | #include <asm/mach/serial_sa1100.h> | 43 | #include <asm/mach/serial_sa1100.h> |
47 | 44 | ||
48 | /* We've been assigned a range on the "Low-density serial ports" major */ | 45 | /* We've been assigned a range on the "Low-density serial ports" major */ |
@@ -192,7 +189,7 @@ static void sa1100_enable_ms(struct uart_port *port) | |||
192 | static void | 189 | static void |
193 | sa1100_rx_chars(struct sa1100_port *sport) | 190 | sa1100_rx_chars(struct sa1100_port *sport) |
194 | { | 191 | { |
195 | struct tty_struct *tty = sport->port.info->tty; | 192 | struct tty_struct *tty = sport->port.info->port.tty; |
196 | unsigned int status, ch, flg; | 193 | unsigned int status, ch, flg; |
197 | 194 | ||
198 | status = UTSR1_TO_SM(UART_GET_UTSR1(sport)) | | 195 | status = UTSR1_TO_SM(UART_GET_UTSR1(sport)) | |
@@ -892,7 +889,7 @@ static int __init sa1100_serial_init(void) | |||
892 | { | 889 | { |
893 | int ret; | 890 | int ret; |
894 | 891 | ||
895 | printk(KERN_INFO "Serial: SA11x0 driver $Revision: 1.50 $\n"); | 892 | printk(KERN_INFO "Serial: SA11x0 driver\n"); |
896 | 893 | ||
897 | sa1100_init_ports(); | 894 | sa1100_init_ports(); |
898 | 895 | ||
@@ -915,7 +912,7 @@ module_init(sa1100_serial_init); | |||
915 | module_exit(sa1100_serial_exit); | 912 | module_exit(sa1100_serial_exit); |
916 | 913 | ||
917 | MODULE_AUTHOR("Deep Blue Solutions Ltd"); | 914 | MODULE_AUTHOR("Deep Blue Solutions Ltd"); |
918 | MODULE_DESCRIPTION("SA1100 generic serial port driver $Revision: 1.50 $"); | 915 | MODULE_DESCRIPTION("SA1100 generic serial port driver"); |
919 | MODULE_LICENSE("GPL"); | 916 | MODULE_LICENSE("GPL"); |
920 | MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_SA1100_MAJOR); | 917 | MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_SA1100_MAJOR); |
921 | MODULE_ALIAS("platform:sa11x0-uart"); | 918 | MODULE_ALIAS("platform:sa11x0-uart"); |