summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/upc.h
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-07-28 21:43:30 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-30 17:07:32 -0700
commitfbf515b81569585c8f404bc12fbcc59e44fdcd85 (patch)
treecb173cd5105f4a6b9c197e2bf11113d20a9ddf11 /drivers/staging/vt6655/upc.h
parent33c1576ea1feb1817600aad4299537e92b90ebb5 (diff)
downloadlinux-fbf515b81569585c8f404bc12fbcc59e44fdcd85.tar.gz
linux-fbf515b81569585c8f404bc12fbcc59e44fdcd85.tar.xz
staging: vt6655: dead code remove undefined macro IO_MAP
This device is always memory mapped Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/upc.h')
-rw-r--r--drivers/staging/vt6655/upc.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/drivers/staging/vt6655/upc.h b/drivers/staging/vt6655/upc.h
index af12a86cd086..e262f1b00e66 100644
--- a/drivers/staging/vt6655/upc.h
+++ b/drivers/staging/vt6655/upc.h
@@ -35,38 +35,6 @@
/*--------------------- Export Definitions -------------------------*/
//
-// For IO mapped
-//
-
-#ifdef IO_MAP
-
-#define VNSvInPortB(dwIOAddress, pbyData) \
-do { \
- *(pbyData) = inb(dwIOAddress); \
-} while (0)
-
-#define VNSvInPortW(dwIOAddress, pwData) \
-do { \
- *(pwData) = inw(dwIOAddress); \
-} while (0)
-
-#define VNSvInPortD(dwIOAddress, pdwData) \
-do { \
- *(pdwData) = inl(dwIOAddress); \
-} while (0)
-
-#define VNSvOutPortB(dwIOAddress, byData) \
- outb(byData, dwIOAddress)
-
-#define VNSvOutPortW(dwIOAddress, wData) \
- outw(wData, dwIOAddress)
-
-#define VNSvOutPortD(dwIOAddress, dwData) \
- outl(dwData, dwIOAddress)
-
-#else
-
-//
// For memory mapped IO
//
@@ -100,8 +68,6 @@ do { \
writel((unsigned long)dwData, dwIOAddress); \
} while (0)
-#endif
-
//
// ALWAYS IO-Mapped IO when in 16-bit/32-bit environment
//