Skip to content
Commit 0a957467 authored by Guenter Roeck's avatar Guenter Roeck Committed by Linus Torvalds
Browse files

x86: i8259: Add missing include file



i8259.h uses inb/outb and thus needs to include asm/io.h to avoid the
following build error, as seen with x86_64:defconfig and CONFIG_SMP=n.

  In file included from drivers/rtc/rtc-cmos.c:45:0:
  arch/x86/include/asm/i8259.h: In function 'inb_pic':
  arch/x86/include/asm/i8259.h:32:24: error:
	implicit declaration of function 'inb'

  arch/x86/include/asm/i8259.h: In function 'outb_pic':
  arch/x86/include/asm/i8259.h:45:2: error:
	implicit declaration of function 'outb'

Reported-by: default avatarSebastian Gottschall <s.gottschall@dd-wrt.com>
Suggested-by: default avatarSebastian Gottschall <s.gottschall@dd-wrt.com>
Fixes: 447ae316

 ("x86: Don't include linux/irq.h from asm/hardirq.h")
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fa1b5d09
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment