diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2009-11-06 18:35:34 +0800 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-12-17 01:57:09 +0000 |
commit | a3ed495190ebe918f4584291ed8c76f1c97a84fd (patch) | |
tree | 700cc7549624c08b38d6003d63a7bb514fe09605 /arch/mips/loongson/common/Makefile | |
parent | 04cfb90a92a2f9f7b56b2f85c528be7d1561e0e5 (diff) | |
download | kernel_samsung_espresso10-a3ed495190ebe918f4584291ed8c76f1c97a84fd.zip kernel_samsung_espresso10-a3ed495190ebe918f4584291ed8c76f1c97a84fd.tar.gz kernel_samsung_espresso10-a3ed495190ebe918f4584291ed8c76f1c97a84fd.tar.bz2 |
MIPS: Loongson: Cleanup the serial port support
To share the same kernel image amon different machines we have added the
machtype command line support.
In the old serial port implementation the UART base address is hardcoded as
a macro in machine.h which breaks with machtype, so change that to discover
the address dynamically. Also move the initialization of the UART base
address to uart_base.c to avoid remapping twice for early_printk.c and
serial.c.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/581/
Patchwork: http://patchwork.linux-mips.org/patch/682/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/loongson/common/Makefile')
-rw-r--r-- | arch/mips/loongson/common/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/loongson/common/Makefile b/arch/mips/loongson/common/Makefile index d21d116..be6adf7 100644 --- a/arch/mips/loongson/common/Makefile +++ b/arch/mips/loongson/common/Makefile @@ -3,7 +3,7 @@ # obj-y += setup.o init.o cmdline.o env.o time.o reset.o irq.o \ - pci.o bonito-irq.o mem.o machtype.o + pci.o bonito-irq.o mem.o machtype.o uart_base.o # # Early printk support |