summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-04-04 11:24:38 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2008-04-04 14:45:04 +0200
commita9912f68c65850d2bed12111aabe8b779c95e365 (patch)
tree2caa6254e8ef720261f4d0d89f961bd1368dbbbe
parentcccf87b621d8460d233dc51d45a9485aac354515 (diff)
downloadbarebox-a9912f68c65850d2bed12111aabe8b779c95e365.tar.gz
barebox-a9912f68c65850d2bed12111aabe8b779c95e365.tar.xz
Fixed orphaned CONFIG_INTERRUPTS
replace remaining CONFIG_INTERRUPTS with CONFIG_USE_IRQ Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index c146d3156f..e130dbd65f 100644
--- a/include/common.h
+++ b/include/common.h
@@ -111,7 +111,7 @@ void reset_cpu (ulong addr);
//void external_interrupt (struct pt_regs *);
void irq_install_handler(int, interrupt_handler_t *, void *);
void irq_free_handler (int);
-#ifdef CONFIG_INTERRUPTS
+#ifdef CONFIG_USE_IRQ
void enable_interrupts (void);
int disable_interrupts (void);
#else