diff options
| author | Benjamin Romer <benjamin.romer@unisys.com> | 2014-08-05 22:57:45 +0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-08-16 23:23:07 +0400 |
| commit | fb75fc5c0b461a971ea82b169e65fb4d07b5fa01 (patch) | |
| tree | 573dad559b6b14a9bed99f01725d83edd53c6f4c | |
| parent | 1d2def986df26bc8ad96e4a824e149dd5fc0e054 (diff) | |
| download | linux-fb75fc5c0b461a971ea82b169e65fb4d07b5fa01.tar.xz | |
staging: unisys: get rid of unused VMMIO types
Delete the unused common VMMIO types in timskmod.h.
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/unisys/include/timskmod.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/staging/unisys/include/timskmod.h b/drivers/staging/unisys/include/timskmod.h index ecf1a6fac7a1..b20fc9dfc4a7 100644 --- a/drivers/staging/unisys/include/timskmod.h +++ b/drivers/staging/unisys/include/timskmod.h @@ -71,17 +71,6 @@ #define HOSTADDRESS unsigned long long #endif -typedef long VMMIO; /**< Virtual MMIO address (returned from ioremap), which - * is a virtual address pointer to a memory-mapped region. - * These are declared as "long" instead of u32* to force you to - * use readb()/writeb()/memcpy_fromio()/etc to access them. - * (On x86 we could probably get away with treating them as - * pointers.) - */ -typedef long VMMIO8; /**< #VMMIO pointing to 8-bit data */ -typedef long VMMIO16;/**< #VMMIO pointing to 16-bit data */ -typedef long VMMIO32;/**< #VMMIO pointing to 32-bit data */ - #define LOCKSEM(sem) down_interruptible(sem) #define LOCKSEM_UNINTERRUPTIBLE(sem) down(sem) #define UNLOCKSEM(sem) up(sem) |
