mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

After my previous patch, the ioport_map() function changed from the lib/iomap.c version to the asm-generic/io.h version, which requires a correct PCI_IOBASE definition. Unfortunately the types are also different, so add the correct definition for ioport_map() in asm/io.h and change the machine specific ones to have the correct type. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
14 lines
362 B
C
14 lines
362 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_MACH_RALINK_SPACES_H_
|
|
#define __ASM_MACH_RALINK_SPACES_H_
|
|
|
|
#define PCI_IOBASE (void __iomem *)mips_io_port_base
|
|
#define PCI_IOSIZE SZ_64K
|
|
#define IO_SPACE_LIMIT (PCI_IOSIZE - 1)
|
|
|
|
#ifdef CONFIG_PCI_DRIVERS_GENERIC
|
|
#define pci_remap_iospace pci_remap_iospace
|
|
#endif
|
|
|
|
#include <asm/mach-generic/spaces.h>
|
|
#endif
|