From c8e21ddcd6e985fadb62d24a44c99b64bf9d7d69 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Feb 2016 11:34:39 -0600 Subject: [PATCH] Costmetic changes to comments and spacing. --- nshlib/nsh_mmcmds.c | 24 ------------------------ system/i2c/i2c_main.c | 10 +++++++--- 2 files changed, 7 insertions(+), 27 deletions(-) diff --git a/nshlib/nsh_mmcmds.c b/nshlib/nsh_mmcmds.c index b186377d2..bc6a8bc31 100644 --- a/nshlib/nsh_mmcmds.c +++ b/nshlib/nsh_mmcmds.c @@ -44,30 +44,6 @@ #include "nsh.h" #include "nsh_console.h" -/**************************************************************************** - * Pre-processor Definitions - ****************************************************************************/ - -/**************************************************************************** - * Private Types - ****************************************************************************/ - -/**************************************************************************** - * Private Function Prototypes - ****************************************************************************/ - -/**************************************************************************** - * Private Data - ****************************************************************************/ - -/**************************************************************************** - * Public Data - ****************************************************************************/ - -/**************************************************************************** - * Private Functions - ****************************************************************************/ - /**************************************************************************** * Public Functions ****************************************************************************/ diff --git a/system/i2c/i2c_main.c b/system/i2c/i2c_main.c index b9c9fa259..0150959ea 100644 --- a/system/i2c/i2c_main.c +++ b/system/i2c/i2c_main.c @@ -282,6 +282,7 @@ int i2c_parse(FAR struct i2ctool_s *i2ctool, int argc, char *argv[]) break; } } + newargs[nargs] = NULL; /* Then execute the command */ @@ -351,12 +352,14 @@ int i2c_main(int argc, char *argv[]) { /* Verify settings */ - if (g_i2ctool.bus < CONFIG_I2CTOOL_MINBUS || g_i2ctool.bus > CONFIG_I2CTOOL_MAXBUS) + if (g_i2ctool.bus < CONFIG_I2CTOOL_MINBUS || + g_i2ctool.bus > CONFIG_I2CTOOL_MAXBUS) { g_i2ctool.bus = CONFIG_I2CTOOL_MINBUS; } - if (g_i2ctool.addr < CONFIG_I2CTOOL_MINADDR || g_i2ctool.addr > CONFIG_I2CTOOL_MAXADDR) + if (g_i2ctool.addr < CONFIG_I2CTOOL_MINADDR || + g_i2ctool.addr > CONFIG_I2CTOOL_MAXADDR) { g_i2ctool.addr = CONFIG_I2CTOOL_MINADDR; } @@ -376,7 +379,7 @@ int i2c_main(int argc, char *argv[]) g_i2ctool.freq = CONFIG_I2CTOOL_DEFFREQ; } - /* Parse process the command line */ + /* Parse and process the command line */ i2c_setup(&g_i2ctool); (void)i2c_parse(&g_i2ctool, argc, argv); @@ -425,6 +428,7 @@ ssize_t i2ctool_write(FAR struct i2ctool_s *i2ctool, FAR const void *buffer, siz { dbg("[%d] Failed to send buffer: %d\n", OUTFD(i2ctool), errno); } + return ret; }