Skip to content

Commit 2e21c15

Browse files
committed
alpha: fix marvel_ioread8 build regression
The previous build fix contained a small typo that led to another regression: arch/alpha/kernel/core_marvel.c:807:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'marvel_ioread8' Reported-by: kernel test robot <[email protected]> Fixes: e19d4eb ("alpha: add full ioread64/iowrite64 implementation") Signed-off-by: Arnd Bergmann <[email protected]>
1 parent e19d4eb commit 2e21c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/alpha/kernel/core_marvel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ void __iomem *marvel_ioportmap (unsigned long addr)
803803
return (void __iomem *)addr;
804804
}
805805

806-
unsigned u8
806+
u8
807807
marvel_ioread8(const void __iomem *xaddr)
808808
{
809809
unsigned long addr = (unsigned long) xaddr;

0 commit comments

Comments
 (0)