Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e66a2aa authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: upc.h: Remove unused macros



PCBv* are not used

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4a5f7184
Loading
Loading
Loading
Loading
+0 −27
Original line number Diff line number Diff line
@@ -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;					\