Commit 1958beb8 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman
Browse files

Revert "MIPS: ralink: don't define PC_IOBASE but increase IO_SPACE_LIMIT"



This reverts commit 15969747.

There is no real need to increase IO_SPACE_LIMIT if PCI_IOBASE
is properly set to 'mips_io_port_base'. Hence revert this commit
first before doing anything else.

Acked-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Link: https://lore.kernel.org/r/20210925203224.10419-2-sergio.paracuellos@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f284edfe
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,7 +2,9 @@
#ifndef __ASM_MACH_RALINK_SPACES_H_
#define __ASM_MACH_RALINK_SPACES_H_

#define IO_SPACE_LIMIT	0x1fffffff
#define PCI_IOBASE	_AC(0xa0000000, UL)
#define PCI_IOSIZE	SZ_16M
#define IO_SPACE_LIMIT	(PCI_IOSIZE - 1)

#include <asm/mach-generic/spaces.h>
#endif