mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-15 23:27:50 +07:00
[PATCH] cs89x0: use #elif instead of #else/#if/#endif
Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
032874e492
commit
580d7b8cc5
@ -353,8 +353,7 @@ writeword(unsigned long base_addr, int portno, int value)
|
|||||||
{
|
{
|
||||||
__raw_writel((u16)value, base_addr + (portno << 1));
|
__raw_writel((u16)value, base_addr + (portno << 1));
|
||||||
}
|
}
|
||||||
#else
|
#elif defined(CONFIG_ARCH_PNX010X)
|
||||||
#if defined(CONFIG_ARCH_PNX010X)
|
|
||||||
static int
|
static int
|
||||||
readword(unsigned long base_addr, int portno)
|
readword(unsigned long base_addr, int portno)
|
||||||
{
|
{
|
||||||
@ -379,7 +378,6 @@ writeword(unsigned long base_addr, int portno, int value)
|
|||||||
outw(value, base_addr + portno);
|
outw(value, base_addr + portno);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
readwords(unsigned long base_addr, int portno, void *buf, int length)
|
readwords(unsigned long base_addr, int portno, void *buf, int length)
|
||||||
|
Loading…
Reference in New Issue
Block a user