serial.c (3a20ac2c52b1317f5a5f0bd9cd3cbe8495ddd026) | serial.c (ca4d3e6746bdcfccb517349bce2d2c5b5614fb6f) |
---|---|
1/* 2 * BRIEF MODULE DESCRIPTION 3 * Serial port initialisation. 4 * 5 * Copyright 2004 IDT Inc. (rischelp@idt.com) 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the --- 15 unchanged lines hidden (view full) --- 24 * with this program; if not, write to the Free Software Foundation, Inc., 25 * 675 Mass Ave, Cambridge, MA 02139, USA. 26 */ 27 28#include <linux/init.h> 29#include <linux/tty.h> 30#include <linux/serial_core.h> 31#include <linux/serial_8250.h> | 1/* 2 * BRIEF MODULE DESCRIPTION 3 * Serial port initialisation. 4 * 5 * Copyright 2004 IDT Inc. (rischelp@idt.com) 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the --- 15 unchanged lines hidden (view full) --- 24 * with this program; if not, write to the Free Software Foundation, Inc., 25 * 675 Mass Ave, Cambridge, MA 02139, USA. 26 */ 27 28#include <linux/init.h> 29#include <linux/tty.h> 30#include <linux/serial_core.h> 31#include <linux/serial_8250.h> |
32#include <linux/irq.h> |
|
32 33#include <asm/serial.h> 34#include <asm/mach-rc32434/rb.h> 35 36extern unsigned int idt_cpu_freq; 37 38static struct uart_port rb532_uart = { 39 .flags = UPF_BOOT_AUTOCONF, --- 14 unchanged lines hidden --- | 33 34#include <asm/serial.h> 35#include <asm/mach-rc32434/rb.h> 36 37extern unsigned int idt_cpu_freq; 38 39static struct uart_port rb532_uart = { 40 .flags = UPF_BOOT_AUTOCONF, --- 14 unchanged lines hidden --- |