diff options
author | Joshua Oreman <oremanj@rwcr.net> | 2009-06-19 02:21:08 -0700 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2009-06-24 13:23:41 +0100 |
commit | 15ce2fb851067eb64543859737e2d42f8a271ed6 (patch) | |
tree | c336c1208e2834a0f47574db96c9be174b662810 /src/hci/commands/ifmgmt_cmd.c | |
parent | 62549983274af297c65fed369d9f5a2ea795cd99 (diff) | |
download | ipxe-15ce2fb851067eb64543859737e2d42f8a271ed6.tar.gz |
[hci] Expose ifcommon_exec() in a local header so wireless commands can use it
This keeps code size down, since the wireless interface management
commands have the same command-line interface and overall structure as
the wired commands.
Signed-off-by: Michael Brown <mcb30@etherboot.org>
Diffstat (limited to 'src/hci/commands/ifmgmt_cmd.c')
-rw-r--r-- | src/hci/commands/ifmgmt_cmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hci/commands/ifmgmt_cmd.c b/src/hci/commands/ifmgmt_cmd.c index 586fc5794..b5f420562 100644 --- a/src/hci/commands/ifmgmt_cmd.c +++ b/src/hci/commands/ifmgmt_cmd.c @@ -23,6 +23,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); #include <gpxe/netdevice.h> #include <gpxe/command.h> #include <usr/ifmgmt.h> +#include "ifmgmt_cmd.h" /** @file * @@ -103,7 +104,7 @@ static int ifcommon_do_list ( int ( * payload ) ( struct net_device * ), * @v argv Argument list * @ret rc Exit code */ -static __attribute__ (( regparm ( 2 ) )) int +__attribute__ (( regparm ( 2 ) )) int ifcommon_exec ( int ( * payload ) ( struct net_device * ), const char *verb, int argc, char **argv ) { int c; |