diff options
author | Paul Burton | 2014-04-07 10:11:18 +0100 |
---|---|---|
committer | Daniel Schwierzeck | 2014-04-20 13:16:42 +0200 |
commit | 11a932fb18a497fc1b9ad0c4c0e3c5969e455a42 (patch) | |
tree | 99c128128e5d90ad04e6df89291773f03e0d6a10 /arch/mips/lib | |
parent | 186d8159f662e8b4964dca3ff5c87f06cf290a82 (diff) |
MIPS: move mips_io_port_base out of board.c
Move the definition of this variable out of arch/mips/lib/board.c in
preparation for allowing use of generic board on MIPS, which will lead
to this file not being compiled.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch/mips/lib')
-rw-r--r-- | arch/mips/lib/Makefile | 2 | ||||
-rw-r--r-- | arch/mips/lib/board.c | 6 | ||||
-rw-r--r-- | arch/mips/lib/io.c | 12 |
3 files changed, 14 insertions, 6 deletions
diff --git a/arch/mips/lib/Makefile b/arch/mips/lib/Makefile index fabeb83f7e9..88ef1c59ab5 100644 --- a/arch/mips/lib/Makefile +++ b/arch/mips/lib/Makefile @@ -6,6 +6,8 @@ # obj-y += board.o +obj-y += io.o + obj-$(CONFIG_CMD_BOOTM) += bootm.o lib-$(CONFIG_USE_PRIVATE_LIBGCC) += ashldi3.o ashrdi3.o lshrdi3.o diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c index 9e6ba15acab..317c8258de9 100644 --- a/arch/mips/lib/board.c +++ b/arch/mips/lib/board.c @@ -27,12 +27,6 @@ ulong monitor_flash_len; static char *failed = "*** failed ***\n"; -/* - * mips_io_port_base is the begin of the address space to which x86 style - * I/O ports are mapped. - */ -const unsigned long mips_io_port_base = -1; - int __board_early_init_f(void) { /* diff --git a/arch/mips/lib/io.c b/arch/mips/lib/io.c new file mode 100644 index 00000000000..b2d4a094dab --- /dev/null +++ b/arch/mips/lib/io.c @@ -0,0 +1,12 @@ +/* + * (C) Copyright 2003 + * Wolfgang Denk, DENX Software Engineering, wd@denx.de. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +/* + * mips_io_port_base is the begin of the address space to which x86 style + * I/O ports are mapped. + */ +const unsigned long mips_io_port_base = -1; |