Skip to content

Commit 2b05980

Browse files
committed
h8300: Add missing include file to asm/io.h
h8300 builds fail with arch/h8300/include/asm/io.h:9:15: error: unknown type name ‘u8’ arch/h8300/include/asm/io.h:15:15: error: unknown type name ‘u16’ arch/h8300/include/asm/io.h:21:15: error: unknown type name ‘u32’ and many related errors. Fixes: 23c82d4 ("kexec-allow-architectures-to-override-boot-mapping-fix") Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
1 parent 783011b commit 2b05980

File tree

1 file changed

+2
-0
lines changed
  • arch/h8300/include/asm

1 file changed

+2
-0
lines changed

arch/h8300/include/asm/io.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
#ifdef __KERNEL__
55

6+
#include <linux/types.h>
7+
68
/* H8/300 internal I/O functions */
79

810
#define __raw_readb __raw_readb

0 commit comments

Comments
 (0)