staging: vt6655: upc.h: Remove unused macros
authorMalcolm Priestley <tvboxspy@gmail.com>
Sun, 10 Aug 2014 11:22:01 +0000 (12:22 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:15 +0000 (12:23 -0700)
PCBv* are not used

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/upc.h

index e262f1b00e6617f66fc0d2e72ad96c200683a392..00e5a00a72e0fa0f9891e200e04c65810bb663cd 100644 (file)
@@ -68,33 +68,6 @@ do {                                                                 \
        writel((unsigned long)dwData, dwIOAddress);                     \
 } while (0)
 
-//
-// ALWAYS IO-Mapped IO when in 16-bit/32-bit environment
-//
-#define PCBvInPortB(dwIOAddress, pbyData)      \
-do {                                           \
-       *(pbyData) = inb(dwIOAddress);          \
-} while (0)
-
-#define PCBvInPortW(dwIOAddress, pwData)       \
-do {                                           \
-       *(pwData) = inw(dwIOAddress);           \
-} while (0)
-
-#define PCBvInPortD(dwIOAddress, pdwData)      \
-do {                                           \
-       *(pdwData) = inl(dwIOAddress);          \
-} while (0)
-
-#define PCBvOutPortB(dwIOAddress, byData)      \
-       outb(byData, dwIOAddress)
-
-#define PCBvOutPortW(dwIOAddress, wData)       \
-       outw(wData, dwIOAddress)
-
-#define PCBvOutPortD(dwIOAddress, dwData)      \
-       outl(dwData, dwIOAddress)
-
 #define PCAvDelayByIO(uDelayUnit)                              \
 do {                                                           \
        unsigned char byData;                                   \
This page took 0.025596 seconds and 5 git commands to generate.