Kconfig: rename HAS_IOPORT to HAS_IOPORT_MAP
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 7 Apr 2014 22:39:19 +0000 (15:39 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 7 Apr 2014 23:36:11 +0000 (16:36 -0700)
If the renamed symbol is defined lib/iomap.c implements ioport_map and
ioport_unmap and currently (nearly) all platforms define the port
accessor functions outb/inb and friend unconditionally.  So
HAS_IOPORT_MAP is the better name for this.

Consequently NO_IOPORT is renamed to NO_IOPORT_MAP.

The motivation for this change is to reintroduce a symbol HAS_IOPORT
that signals if outb/int et al are available.  I will address that at
least one merge window later though to keep surprises to a minimum and
catch new introductions of (HAS|NO)_IOPORT.

The changes in this commit were done using:

$ git grep -l -E '(NO|HAS)_IOPORT' | xargs perl -p -i -e 's/\b((?:CONFIG_)?(?:NO|HAS)_IOPORT)\b/$1_MAP/'

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
41 files changed:
arch/arc/Kconfig
arch/arm/Kconfig
arch/arm/mach-picoxcell/Kconfig
arch/arm/mach-prima2/Kconfig
arch/arm/mach-s3c24xx/Kconfig
arch/arm/mach-shmobile/Kconfig
arch/arm/mach-vexpress/Kconfig
arch/arm/plat-samsung/Kconfig
arch/arm64/Kconfig
arch/cris/Kconfig
arch/hexagon/Kconfig
arch/m32r/Kconfig
arch/m68k/Kconfig
arch/metag/Kconfig
arch/mips/Kconfig
arch/openrisc/Kconfig
arch/s390/Kconfig
arch/sh/Kconfig
arch/sh/boards/Kconfig
arch/sh/include/asm/io.h
arch/sh/include/asm/io_trapped.h
arch/sh/include/asm/machvec.h
arch/sh/kernel/Makefile
arch/sh/kernel/io_trapped.c
arch/tile/Kconfig
arch/unicore32/Kconfig
arch/xtensa/Kconfig
arch/xtensa/configs/iss_defconfig
arch/xtensa/configs/s6105_defconfig
drivers/char/tpm/Kconfig
drivers/i2c/busses/Kconfig
drivers/net/can/sja1000/Kconfig
drivers/net/ethernet/3com/Kconfig
include/asm-generic/io.h
include/asm-generic/iomap.h
include/linux/io.h
lib/Kconfig
lib/devres.c
lib/iomap.c
sound/isa/Kconfig
sound/pci/Kconfig

index 75de197a2fef8a39c61ff764bcbb0d5bef2f71ae..9596b0ab108d14de64763a0b7dfded5a7cddd4f3 100644 (file)
@@ -57,7 +57,7 @@ config ARCH_FLATMEM_ENABLE
 config MMU
        def_bool y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config GENERIC_CALIBRATE_DELAY
index d7a71e3ef55fce7d2812602077495baeb25149b2..5db05f6a041289676617cdf713385f3e30238055 100644 (file)
@@ -126,7 +126,7 @@ config HAVE_TCM
 config HAVE_PROC_CPU
        bool
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        bool
 
 config EISA
@@ -410,7 +410,7 @@ config ARCH_EBSA110
        select ISA
        select NEED_MACH_IO_H
        select NEED_MACH_MEMORY_H
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        help
          This is an evaluation board for the StrongARM processor available
          from Digital. It has limited hardware on-board, including an
@@ -428,7 +428,7 @@ config ARCH_EFM32
        select CPU_V7M
        select GENERIC_CLOCKEVENTS
        select NO_DMA
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select SPARSE_IRQ
        select USE_OF
        help
@@ -677,7 +677,7 @@ config ARCH_SHMOBILE_LEGACY
        select HAVE_SMP
        select MIGHT_HAVE_CACHE_L2X0
        select MULTI_IRQ_HANDLER
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select PINCTRL
        select PM_GENERIC_DOMAINS if PM
        select SPARSE_IRQ
@@ -699,7 +699,7 @@ config ARCH_RPC
        select ISA_DMA_API
        select NEED_MACH_IO_H
        select NEED_MACH_MEMORY_H
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select VIRT_TO_BUS
        help
          On the Acorn Risc-PC, Linux can support the internal IDE disk and
@@ -760,7 +760,7 @@ config ARCH_S3C64XX
        select HAVE_S3C2410_I2C if I2C
        select HAVE_S3C2410_WATCHDOG if WATCHDOG
        select HAVE_TCM
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select PLAT_SAMSUNG
        select PM_GENERIC_DOMAINS if PM
        select S3C_DEV_NAND
index eca9eb1c59316ebabb8f2771905c5766951eeaab..62240f69b4ee8b1e62c0a94cc936e6fdcb52bd5b 100644 (file)
@@ -4,4 +4,4 @@ config ARCH_PICOXCELL
        select ARM_VIC
        select DW_APB_TIMER_OF
        select HAVE_TCM
-       select NO_IOPORT
+       select NO_IOPORT_MAP
index 3e8189186a5b50f9e8906231c6f46f2e81641a9e..e4e505f52ba0b2b477f008397808ab20c3ac14f4 100644 (file)
@@ -3,7 +3,7 @@ config ARCH_SIRF
        select ARCH_HAS_RESET_CONTROLLER
        select ARCH_REQUIRE_GPIOLIB
        select GENERIC_IRQ_CHIP
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select PINCTRL
        select PINCTRL_SIRF
        help
index ba1cc62467789225a0008efe0adfc1b32369c9c5..40cf50b9940cb13b02ab34173d479ac26cdcfbe9 100644 (file)
@@ -12,7 +12,7 @@ if ARCH_S3C24XX
 config PLAT_S3C24XX
        def_bool y
        select ARCH_REQUIRE_GPIOLIB
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select S3C_DEV_NAND
        select IRQ_DOMAIN
        help
index a182008e3aebced89546424d6fda66232880a590..0f92ba8e78841556c683ffaebbae8a8df13347db 100644 (file)
@@ -10,7 +10,7 @@ config ARCH_SHMOBILE_MULTI
        select ARM_GIC
        select MIGHT_HAVE_PCI
        select ARCH_DMA_ADDR_T_64BIT if ARM_LPAE
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select PINCTRL
        select ARCH_REQUIRE_GPIOLIB
 
index 80b4be36f10a22bd69840c99e241eabdb756809a..657d52d0391fc4a8edd9fa445ffdf71457571dcf 100644 (file)
@@ -10,7 +10,7 @@ config ARCH_VEXPRESS
        select HAVE_ARM_TWD if SMP
        select HAVE_PATA_PLATFORM
        select ICST
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select PLAT_VERSATILE
        select PLAT_VERSATILE_CLCD
        select POWER_RESET
index b57e922f161465eab5aa57dcfd27704c1d699598..243dfcb2ca0ec191f1c6b27e3071c0098f181a94 100644 (file)
@@ -9,7 +9,7 @@ config PLAT_SAMSUNG
        depends on PLAT_S3C24XX || ARCH_S3C64XX || PLAT_S5P || ARCH_EXYNOS
        default y
        select GENERIC_IRQ_CHIP
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        help
          Base platform code for all Samsung SoC based systems
 
@@ -19,7 +19,7 @@ config PLAT_S5P
        default y
        select ARCH_REQUIRE_GPIOLIB
        select ARM_VIC
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select PLAT_SAMSUNG
        select S3C_GPIO_TRACK
        select S5P_GPIO_DRVSTR
index 9711a5fd948d126f3c457d1edc7ac720bd3c63b4..8079a23e27016ac03546034365f8c2d204692168 100644 (file)
@@ -66,7 +66,7 @@ config ARCH_PHYS_ADDR_T_64BIT
 config MMU
        def_bool y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config STACKTRACE_SUPPORT
index 7cb90a54b59863272f28f55665a51a966fa23611..52731e221851137ce57ad7aa7b176cbe07e116a6 100644 (file)
@@ -29,7 +29,7 @@ config GENERIC_CALIBRATE_DELAY
        bool
        default y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config FORCE_MAX_ZONEORDER
index fbc5c78c9ac75de0eafdae726b8bc061c73afcce..0fd6138f620301d7a2994fb96def1398f93b0a7c 100644 (file)
@@ -19,7 +19,7 @@ config HEXAGON
        select GENERIC_IRQ_SHOW
        select HAVE_ARCH_KGDB
        select HAVE_ARCH_TRACEHOOK
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select GENERIC_IOMAP
        select GENERIC_SMP_IDLE_THREAD
        select STACKTRACE_SUPPORT
index ca4504424dae7e9f38cf8f59c953a0cda2570c12..9e44bbd8051ed1387a45eb4fca0b3f4aa49a3bf0 100644 (file)
@@ -28,7 +28,7 @@ config ZONE_DMA
        bool
        default y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config NO_DMA
index b2e322939256f528bfeb042bc420cd0de2efc1a3..87b7c7581b1dd5777642a3b87dd9002b7e68dc50 100644 (file)
@@ -52,7 +52,7 @@ config TIME_LOW_RES
        bool
        default y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config NO_DMA
index b1d3c9c0eff84a1c95a6f3c791e4069f48e12c7c..499b7610eaaf901114d3c7aaab36b53297469aba 100644 (file)
@@ -52,7 +52,7 @@ config GENERIC_HWEIGHT
 config GENERIC_CALIBRATE_DELAY
        def_bool y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 source "init/Kconfig"
index 16d5ab1615b1b1ee39b2148c01aa4b0b2df74d6a..5cd695f905a1c424b02fed524a9169eaaa5d63f3 100644 (file)
@@ -175,7 +175,7 @@ config MACH_DECSTATION
        select CPU_R4000_WORKAROUNDS if 64BIT
        select CPU_R4400_WORKAROUNDS if 64BIT
        select DMA_NONCOHERENT
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select IRQ_CPU
        select SYS_HAS_CPU_R3000
        select SYS_HAS_CPU_R4X00
@@ -947,7 +947,7 @@ config SYNC_R4K
 config MIPS_MACHINE
        def_bool n
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool n
 
 config GENERIC_ISA_DMA
index 9488209a52533432b7e42392d1bdd918a45dc840..e71d712afb79fd10e52aefcb913aef047716c219 100644 (file)
@@ -41,7 +41,7 @@ config RWSEM_XCHGADD_ALGORITHM
 config GENERIC_HWEIGHT
        def_bool y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config TRACE_IRQFLAGS_SUPPORT
index 953f17c8d17cde75f73ef78ebc59aa0235e9fde0..346d21678ffdf02e8d677d8ca4516b642be6fce7 100644 (file)
@@ -52,7 +52,7 @@ config KEXEC
 config AUDIT_ARCH
        def_bool y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool y
 
 config PCI_QUIRKS
index 1399383315a36bdcaf06a79b0ef85a60cb8d33d7..ba55e939a820cb5792ee6186090f32d2f667f81d 100644 (file)
@@ -3,7 +3,7 @@ config SUPERH
        select ARCH_MIGHT_HAVE_PC_PARPORT
        select EXPERT
        select CLKDEV_LOOKUP
-       select HAVE_IDE if HAS_IOPORT
+       select HAVE_IDE if HAS_IOPORT_MAP
        select HAVE_MEMBLOCK
        select HAVE_MEMBLOCK_NODE_MAP
        select ARCH_DISCARD_MEMBLOCK
@@ -138,7 +138,7 @@ config ARCH_HAS_ILOG2_U32
 config ARCH_HAS_ILOG2_U64
        def_bool n
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool !PCI
        depends on !SH_CAYMAN && !SH_SH4202_MICRODEV && !SH_SHMIN && \
                   !SH_HP6XX && !SH_SOLUTION_ENGINE
index eb1cf84231a20fd272ca18c9a7b9ee6ba8edea7d..e331e5373b8e36ee447f269859652e05de08c928 100644 (file)
@@ -158,7 +158,7 @@ config SH_SDK7786
        bool "SDK7786"
        depends on CPU_SUBTYPE_SH7786
        select SYS_SUPPORTS_PCI
-       select NO_IOPORT if !PCI
+       select NO_IOPORT_MAP if !PCI
        select ARCH_WANT_OPTIONAL_GPIOLIB
        select HAVE_SRAM_POOL
        select REGULATOR_FIXED_VOLTAGE if REGULATOR
@@ -204,7 +204,7 @@ config SH_URQUELL
        depends on CPU_SUBTYPE_SH7786
        select ARCH_REQUIRE_GPIOLIB
        select SYS_SUPPORTS_PCI
-       select NO_IOPORT if !PCI
+       select NO_IOPORT_MAP if !PCI
 
 config SH_MIGOR
        bool "Migo-R"
@@ -306,7 +306,7 @@ config SH_LBOX_RE2
 config SH_X3PROTO
        bool "SH-X3 Prototype board"
        depends on CPU_SUBTYPE_SHX3
-       select NO_IOPORT if !PCI
+       select NO_IOPORT_MAP if !PCI
        select IRQ_DOMAIN
 
 config SH_MAGIC_PANEL_R2
@@ -333,7 +333,7 @@ config SH_POLARIS
 
 config SH_SH2007
        bool "SH-2007 board"
-       select NO_IOPORT
+       select NO_IOPORT_MAP
        select REGULATOR_FIXED_VOLTAGE if REGULATOR
        depends on CPU_SUBTYPE_SH7780
        help
index 629db2ad79162173dec3e903fd4af568e16c8839..728c4c571f40ee20d879bd097c259fd274a37c29 100644 (file)
@@ -122,7 +122,7 @@ __BUILD_MEMORY_STRING(__raw_, l, u32)
 
 __BUILD_MEMORY_STRING(__raw_, q, u64)
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 
 /*
  * Slowdown I/O port space accesses for antique hardware.
@@ -218,7 +218,7 @@ __BUILD_IOPORT_STRING(w, u16)
 __BUILD_IOPORT_STRING(l, u32)
 __BUILD_IOPORT_STRING(q, u64)
 
-#else /* !CONFIG_HAS_IOPORT */
+#else /* !CONFIG_HAS_IOPORT_MAP */
 
 #include <asm/io_noioport.h>
 
index f1251d4f0ba9ec5a5b42dfad33275e8123a227c3..4ab94ef51071d03eb96f0028a69c9c3b9f1e72e9 100644 (file)
@@ -36,7 +36,7 @@ __ioremap_trapped(unsigned long offset, unsigned long size)
 #define __ioremap_trapped(offset, size) NULL
 #endif
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 extern struct list_head trapped_io;
 
 static inline void __iomem *
index eb9c20d971dd56f0b752f3cf75830ec1743fad4f..d3324e4f372ec9d544f7c35a19d70f1fb679fee1 100644 (file)
@@ -21,7 +21,7 @@ struct sh_machine_vector {
        int (*mv_irq_demux)(int irq);
        void (*mv_init_irq)(void);
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
        void __iomem *(*mv_ioport_map)(unsigned long port, unsigned int size);
        void (*mv_ioport_unmap)(void __iomem *);
 #endif
index 261c8bfd75ce8340c5054957d4a219f005cdd17a..2ccf36c824c65ff6bd97fd0fe65e65d12999f124 100644 (file)
@@ -22,7 +22,7 @@ obj-y := debugtraps.o dma-nommu.o dumpstack.o                 \
 
 ifndef CONFIG_GENERIC_IOMAP
 obj-y                          += iomap.o
-obj-$(CONFIG_HAS_IOPORT)       += ioport.o
+obj-$(CONFIG_HAS_IOPORT_MAP)   += ioport.o
 endif
 
 obj-$(CONFIG_SUPERH32)         += sys_sh32.o
index c0a9761f2f8a05fa6e6d46b6306e0f4cea0bf6c7..f8ce36286cea3f156bfe4e5c59cd2015655fb474 100644 (file)
@@ -22,7 +22,7 @@
 
 #define TRAPPED_PAGES_MAX 16
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 LIST_HEAD(trapped_io);
 EXPORT_SYMBOL_GPL(trapped_io);
 #endif
@@ -90,7 +90,7 @@ int register_trapped_io(struct trapped_io *tiop)
        tiop->magic = IO_TRAPPED_MAGIC;
        INIT_LIST_HEAD(&tiop->list);
        spin_lock_irq(&trapped_lock);
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
        if (flags & IORESOURCE_IO)
                list_add(&tiop->list, &trapped_io);
 #endif
index 31c8c62239956a59e44bd650ef8f6c2eebdd7285..85258ca43ff5be5411c7d6d0c847cb030c9848ed 100644 (file)
@@ -411,7 +411,7 @@ config PCI_DOMAINS
 config NO_IOMEM
        def_bool !PCI
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool !PCI
 
 config TILE_PCI_IO
index 25c0dba508cc293712010c96d6c76938d198682a..aafad6fa166719309a92294498fa5ba14f6313ae 100644 (file)
@@ -27,7 +27,7 @@ config UNICORE32
 config GENERIC_CSUM
        def_bool y
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        bool
 
 config STACKTRACE_SUPPORT
index c87ae7c6e5f94636ab576a649ada006b4fb376dc..02d6d29a63c13716168c0a68b4bdfe55c71ef9b0 100644 (file)
@@ -41,7 +41,7 @@ config ARCH_HAS_ILOG2_U32
 config ARCH_HAS_ILOG2_U64
        def_bool n
 
-config NO_IOPORT
+config NO_IOPORT_MAP
        def_bool n
 
 config HZ
@@ -239,7 +239,7 @@ config XTENSA_PLATFORM_XT2000
 config XTENSA_PLATFORM_S6105
        bool "S6105"
        select SERIAL_CONSOLE
-       select NO_IOPORT
+       select NO_IOPORT_MAP
 
 config XTENSA_PLATFORM_XTFPGA
        bool "XTFPGA"
index 4f233204faf99b751682308c22dab254f6798fa7..d57d917ff2406c308b6b12b4790bf6654f4d900a 100644 (file)
@@ -11,7 +11,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y
 CONFIG_GENERIC_HWEIGHT=y
 # CONFIG_ARCH_HAS_ILOG2_U32 is not set
 # CONFIG_ARCH_HAS_ILOG2_U64 is not set
-CONFIG_NO_IOPORT=y
+CONFIG_NO_IOPORT_MAP=y
 CONFIG_HZ=100
 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_CONSTRUCTORS=y
index d929f77a0360629e599079048eab6061fa1ac5e8..583c2b0974cab79dfb08e7381836702688c2ed52 100644 (file)
@@ -11,7 +11,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y
 CONFIG_GENERIC_HWEIGHT=y
 # CONFIG_ARCH_HAS_ILOG2_U32 is not set
 # CONFIG_ARCH_HAS_ILOG2_U64 is not set
-CONFIG_NO_IOPORT=y
+CONFIG_NO_IOPORT_MAP=y
 CONFIG_HZ=100
 CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 
index 1a65838888cdbb37ec2551fd132c7c91cc66c511..c54cac3f8bc8d336723c752e0fdbcb97117ecff8 100644 (file)
@@ -74,7 +74,7 @@ config TCG_NSC
 
 config TCG_ATMEL
        tristate "Atmel TPM Interface"
-       depends on PPC64 || HAS_IOPORT
+       depends on PPC64 || HAS_IOPORT_MAP
        ---help---
          If you have a TPM security chip from Atmel say Yes and it 
          will be accessible from within Linux.  To compile this driver 
index de17c5593d97c1d702563217f0932aa0a0aee6bd..014afab1d551eef640b70758f6e7ebd26a24ba2f 100644 (file)
@@ -936,7 +936,7 @@ config I2C_ACORN
 
 config I2C_ELEKTOR
        tristate "Elektor ISA card"
-       depends on ISA && HAS_IOPORT && BROKEN_ON_SMP
+       depends on ISA && HAS_IOPORT_MAP && BROKEN_ON_SMP
        select I2C_ALGOPCF
        help
          This supports the PCF8584 ISA bus I2C adapter.  Say Y if you own
index 4b18b87655231c3f5ee445a30dc8b85fcddb265c..1e65cb6c25912c6a2c55f5eb964e3e14230c9060 100644 (file)
@@ -39,7 +39,7 @@ config CAN_EMS_PCI
 config CAN_PEAK_PCMCIA
        tristate "PEAK PCAN-PC Card"
        depends on PCMCIA
-       depends on HAS_IOPORT
+       depends on HAS_IOPORT_MAP
        ---help---
          This driver is for the PCAN-PC Card PCMCIA adapter (1 or 2 channels)
          from PEAK-System (http://www.peak-system.com). To compile this
index 65b735d4a6ad8aa92dc4cea9490f3f14fe9bbab8..afaab4b2333f82cb635d26ce1522d91895912631 100644 (file)
@@ -66,7 +66,7 @@ config PCMCIA_3C589
 
 config VORTEX
        tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
-       depends on (PCI || EISA) && HAS_IOPORT
+       depends on (PCI || EISA) && HAS_IOPORT_MAP
        select MII
        ---help---
          This option enables driver support for a large number of 10Mbps and
index d5afe96adba6c5ee239390625bbb93907c2cc1ba..975e1cc75edb55f9dcd19530eb08912b220e2641 100644 (file)
@@ -327,7 +327,7 @@ static inline void iounmap(void __iomem *addr)
 }
 #endif /* CONFIG_MMU */
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 #ifndef CONFIG_GENERIC_IOMAP
 static inline void __iomem *ioport_map(unsigned long port, unsigned int nr)
 {
@@ -341,7 +341,7 @@ static inline void ioport_unmap(void __iomem *p)
 extern void __iomem *ioport_map(unsigned long port, unsigned int nr);
 extern void ioport_unmap(void __iomem *p);
 #endif /* CONFIG_GENERIC_IOMAP */
-#endif /* CONFIG_HAS_IOPORT */
+#endif /* CONFIG_HAS_IOPORT_MAP */
 
 #ifndef xlate_dev_kmem_ptr
 #define xlate_dev_kmem_ptr(p)  p
index 6afd7d6a9899c49fe721a7bb989c947ea5dc9c75..1b41011643a5ebb694742f7a11ba6c54bba35a16 100644 (file)
@@ -56,7 +56,7 @@ extern void iowrite8_rep(void __iomem *port, const void *buf, unsigned long coun
 extern void iowrite16_rep(void __iomem *port, const void *buf, unsigned long count);
 extern void iowrite32_rep(void __iomem *port, const void *buf, unsigned long count);
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 /* Create a virtual mapping cookie for an IO port range */
 extern void __iomem *ioport_map(unsigned long port, unsigned int nr);
 extern void ioport_unmap(void __iomem *);
index 8a18e75600ccb25b47f17decfacdef673de89713..b76e6e5458064551d53ae527281a8a353e9f6301 100644 (file)
@@ -41,7 +41,7 @@ static inline int ioremap_page_range(unsigned long addr, unsigned long end,
 /*
  * Managed iomap interface
  */
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 void __iomem * devm_ioport_map(struct device *dev, unsigned long port,
                               unsigned int nr);
 void devm_ioport_unmap(struct device *dev, void __iomem *addr);
index 991c98bc4a3f51e9e7f377274084bec909483ea9..5d4984c505f8c10d0d7250b7f59d3234fe3b21b5 100644 (file)
@@ -342,9 +342,9 @@ config HAS_IOMEM
        select GENERIC_IO
        default y
 
-config HAS_IOPORT
+config HAS_IOPORT_MAP
        boolean
-       depends on HAS_IOMEM && !NO_IOPORT
+       depends on HAS_IOMEM && !NO_IOPORT_MAP
        default y
 
 config HAS_DMA
index 48cb3c7bd7de6e0e3382113c3b072373f0775549..2f16c133fd368c9508a7c3bccf60cbec49648e9b 100644 (file)
@@ -170,7 +170,7 @@ void __iomem *devm_request_and_ioremap(struct device *device,
 }
 EXPORT_SYMBOL(devm_request_and_ioremap);
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 /*
  * Generic iomap devres
  */
@@ -229,7 +229,7 @@ void devm_ioport_unmap(struct device *dev, void __iomem *addr)
                               devm_ioport_map_match, (__force void *)addr));
 }
 EXPORT_SYMBOL(devm_ioport_unmap);
-#endif /* CONFIG_HAS_IOPORT */
+#endif /* CONFIG_HAS_IOPORT_MAP */
 
 #ifdef CONFIG_PCI
 /*
index 2c08f36862ebb378b487be2bc8103c7ab29d1124..fc3dcb4b238eca1a483c17de5b5706f536d3d444 100644 (file)
@@ -224,7 +224,7 @@ EXPORT_SYMBOL(iowrite8_rep);
 EXPORT_SYMBOL(iowrite16_rep);
 EXPORT_SYMBOL(iowrite32_rep);
 
-#ifdef CONFIG_HAS_IOPORT
+#ifdef CONFIG_HAS_IOPORT_MAP
 /* Create a virtual mapping cookie for an IO port range */
 void __iomem *ioport_map(unsigned long port, unsigned int nr)
 {
@@ -239,7 +239,7 @@ void ioport_unmap(void __iomem *addr)
 }
 EXPORT_SYMBOL(ioport_map);
 EXPORT_SYMBOL(ioport_unmap);
-#endif /* CONFIG_HAS_IOPORT */
+#endif /* CONFIG_HAS_IOPORT_MAP */
 
 #ifdef CONFIG_PCI
 /* Hide the details if this is a MMIO or PIO address space and just do what
index affa13480659e4b302606b182ae5e4dc6d72de6f..0216475fc759e23442a9f2ab7775c6966458b2cd 100644 (file)
@@ -191,7 +191,7 @@ config SND_ES18XX
 
 config SND_SC6000
        tristate "Gallant SC-6000/6600/7000 and Audio Excel DSP 16"
-       depends on HAS_IOPORT
+       depends on HAS_IOPORT_MAP
        select SND_WSS_LIB
        select SND_OPL3_LIB
        select SND_MPU401_UART
index 0b0c0cf13f748e0e231a6d068351c6827a57d128..3a3a3a71088b02eb9fa63d281cbb27f812a3328f 100644 (file)
@@ -688,7 +688,7 @@ config SND_LOLA
 
 config SND_LX6464ES
        tristate "Digigram LX6464ES"
-       depends on HAS_IOPORT
+       depends on HAS_IOPORT_MAP
        select SND_PCM
        help
          Say Y here to include support for Digigram LX6464ES boards.