From: Mike Frysinger Date: Wed, 20 Oct 2010 07:35:09 +0000 (-0400) Subject: command_t: punt unused type X-Git-Tag: v2011.03-rc1~55^2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40b484a3dfb586076c6cfba44eff3e3cf0b5bd1f;p=platform%2Fkernel%2Fu-boot.git command_t: punt unused type The recent command clean up to constify the argv option to command funcs missed the command_t type itself. This is probably because there are no build time warnings from it because no one is actually using this thing. So just punt it rather than fix it. Signed-off-by: Mike Frysinger --- diff --git a/include/command.h b/include/command.h index 46a9ec4..00edc85 100644 --- a/include/command.h +++ b/include/command.h @@ -86,8 +86,6 @@ extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int * * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); */ -typedef void command_t (cmd_tbl_t *, int, int, char *[]); - #if defined(CONFIG_CMD_MEMORY) \ || defined(CONFIG_CMD_I2C) \ || defined(CONFIG_CMD_ITEST) \