[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>
This commit is contained in:
Joshua Oreman
2009-06-19 02:21:08 -07:00
committed by Michael Brown
parent 6254998327
commit 15ce2fb851
2 changed files with 32 additions and 1 deletions

View File

@@ -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;