diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-11-11 10:36:28 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-02 23:23:20 +0100 |
commit | c253122395753abb9e531d8906c5265dc8803fb1 (patch) | |
tree | 96d806f19c6c4fa04a3afc1e7caf7f3dc5120756 /common | |
parent | a5dd4dc64fe68e549c5ffcf6a048281b5ba94752 (diff) | |
download | u-boot-imx-c253122395753abb9e531d8906c5265dc8803fb1.zip u-boot-imx-c253122395753abb9e531d8906c5265dc8803fb1.tar.gz u-boot-imx-c253122395753abb9e531d8906c5265dc8803fb1.tar.bz2 |
Move do_irqinfo() to common/cmd_irq.c
cmd_irq.c is a much better home and it is already conditionally
compiled based on CONFIG_CMD_IRQ.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_irq.c | 9 | ||||
-rw-r--r-- | common/cmd_misc.c | 11 |
2 files changed, 9 insertions, 11 deletions
diff --git a/common/cmd_irq.c b/common/cmd_irq.c index 4604a5a..2c7e6bb 100644 --- a/common/cmd_irq.c +++ b/common/cmd_irq.c @@ -47,3 +47,12 @@ U_BOOT_CMD( "enable or disable interrupts", "[on, off]" ); + +/* Implemented in $(CPU)/interrupts.c */ +int do_irqinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); + +U_BOOT_CMD( + irqinfo, 1, 1, do_irqinfo, + "print information about IRQs", + "" +); diff --git a/common/cmd_misc.c b/common/cmd_misc.c index b97537e..b0ced2f 100644 --- a/common/cmd_misc.c +++ b/common/cmd_misc.c @@ -49,17 +49,6 @@ int do_sleep (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) return 0; } -/* Implemented in $(CPU)/interrupts.c */ -#if defined(CONFIG_CMD_IRQ) -int do_irqinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); - -U_BOOT_CMD( - irqinfo, 1, 1, do_irqinfo, - "print information about IRQs", - "" -); -#endif - U_BOOT_CMD( sleep , 2, 1, do_sleep, "delay execution for some time", |