Skip to content

Commit

Permalink
x86: i8259.c: remove #ifdefs around includes
Browse files Browse the repository at this point in the history
Remove #ifdefs around includes; including too much should be always
safe.

Signed-off-by: Pavel Machek <pavel@suse.cz>
Cc: macro@ds2.pg.gda.pl
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Pavel Machek authored and Thomas Gleixner committed May 24, 2008
1 parent 21fd513 commit 15d613c
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions arch/x86/kernel/i8259.c
Original file line number Diff line number Diff line change
@@ -1,39 +1,28 @@
#ifdef CONFIG_X86_64
#include <linux/linkage.h>
#endif /* CONFIG_X86_64 */
#include <linux/errno.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/ioport.h>
#include <linux/interrupt.h>
#ifdef CONFIG_X86_64
#include <linux/timex.h>
#endif /* CONFIG_X86_64 */
#include <linux/slab.h>
#include <linux/random.h>
#include <linux/init.h>
#include <linux/kernel_stat.h>
#include <linux/sysdev.h>
#include <linux/bitops.h>

#ifdef CONFIG_X86_64
#include <asm/acpi.h>
#endif /* CONFIG_X86_64 */
#include <asm/atomic.h>
#include <asm/system.h>
#include <asm/io.h>
#ifndef CONFIG_X86_64
#include <asm/timer.h>
#else /* CONFIG_X86_64 */
#include <asm/hw_irq.h>
#endif /* CONFIG_X86_64 */
#include <asm/pgtable.h>
#include <asm/delay.h>
#include <asm/desc.h>
#include <asm/apic.h>
#ifndef CONFIG_X86_64
#include <asm/arch_hooks.h>
#endif /* ! CONFIG_X86_64 */
#include <asm/i8259.h>

/*
Expand Down

0 comments on commit 15d613c

Please sign in to comment.