diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:42 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:25:01 -0500 |
commit | 36bf446b642d5759981f5adf547b4a7aeb15eee3 (patch) | |
tree | 2da7ba0b25d84054b9327358b74ab8e4e72614d1 /cmd | |
parent | c30b7adbcaa88511e7f6095e0683d83cc958bb30 (diff) | |
download | u-boot-36bf446b642d5759981f5adf547b4a7aeb15eee3.tar.gz u-boot-36bf446b642d5759981f5adf547b4a7aeb15eee3.tar.bz2 u-boot-36bf446b642d5759981f5adf547b4a7aeb15eee3.zip |
common: Move enable/disable_interrupts out of common.h
Move these two functions into the irq_funcs.h header file. Also move
interrupt_handler_t as this is used by the irq_install_handler() function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/booti.c | 1 | ||||
-rw-r--r-- | cmd/bootz.c | 1 | ||||
-rw-r--r-- | cmd/fdc.c | 1 | ||||
-rw-r--r-- | cmd/irq.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/cmd/booti.c b/cmd/booti.c index 841eff10d1..d0671deb75 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -8,6 +8,7 @@ #include <bootm.h> #include <command.h> #include <image.h> +#include <irq_func.h> #include <lmb.h> #include <mapmem.h> #include <linux/kernel.h> diff --git a/cmd/bootz.c b/cmd/bootz.c index 0e75509ee9..74be62c2c5 100644 --- a/cmd/bootz.c +++ b/cmd/bootz.c @@ -7,6 +7,7 @@ #include <common.h> #include <bootm.h> #include <command.h> +#include <irq_func.h> #include <lmb.h> #include <linux/compiler.h> @@ -11,6 +11,7 @@ #include <config.h> #include <command.h> #include <image.h> +#include <irq_func.h> #undef FDC_DEBUG @@ -6,6 +6,7 @@ #include <common.h> #include <config.h> #include <command.h> +#include <irq_func.h> static int do_interrupts(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |