From 1bad025c81fb105e6ea02aea66adfeb5969383e4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 11 May 2017 07:46:08 -0600 Subject: [PATCH] Cosmetic changes to comments --- nshlib/nsh_ddcmd.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/nshlib/nsh_ddcmd.c b/nshlib/nsh_ddcmd.c index 71cdac63c..88d934d1a 100644 --- a/nshlib/nsh_ddcmd.c +++ b/nshlib/nsh_ddcmd.c @@ -61,7 +61,7 @@ * Pre-processor Definitions ****************************************************************************/ -/* If no sector size is specified wity BS=, then the following default value +/* If no sector size is specified with BS=, then the following default value * is used. */ @@ -86,26 +86,18 @@ struct dd_s uint32_t nsectors; /* Number of sectors to transfer */ uint32_t sector; /* The current sector number */ uint32_t skip; /* The number of sectors skipped on input */ - bool eof; /* true: The of the input or output file has been hit */ + bool eof; /* true: The end of the input or output file has been hit */ uint16_t sectsize; /* Size of one sector */ uint16_t nbytes; /* Number of valid bytes in the buffer */ uint8_t *buffer; /* Buffer of data to write to the output file */ }; -/**************************************************************************** - * Private Function Prototypes - ****************************************************************************/ - /**************************************************************************** * Private Data ****************************************************************************/ static const char g_dd[] = "dd"; -/**************************************************************************** - * Public Data - ****************************************************************************/ - /**************************************************************************** * Private Functions ****************************************************************************/