[console] Use STATIC_COMMAND macro for all console command definitions

BUG=

Review URL: https://codereview.chromium.org/1348403002 .
This commit is contained in:
Gurjant Kalsi
2015-09-16 15:37:33 -07:00
parent 393b8f7698
commit a6c8b005db
16 changed files with 31 additions and 31 deletions

View File

@@ -94,7 +94,7 @@ static int cmd_gpio(int argc, const cmd_args *argv)
return 0;
}
STATIC_COMMAND_START
{ "gpio", "commands for manipulating system gpios", &cmd_gpio },
STATIC_COMMAND("gpio", "commands for manipulating system gpios", &cmd_gpio)
STATIC_COMMAND_END(gpio);
#endif