* layer when this routine is called, and the driver can store
         * additional information in its flash_bank_t::driver_priv field.
         *
-        * @param cmd_ctx - the command context
-        * @param cmd     - the command, in this case 'flash'
-        * @param args    - parameters, see below
-        * @param argc    - number of parameters on command line
-        * @param bank    - new filled in flash bank.
-        *
         * The args are: @par
         * @code
         * args[0] = bank
 
  *
  * Uses the Built-In-Self-Test (BIST) to generate a 128-bit hash value
  * of the flash content.
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
  */
 static int lpc2900_handle_signature_command( struct command_context_s *cmd_ctx,
                                              char *cmd, char **args, int argc )
  *
  * Read customer info from index sector, and store that block of data into
  * a disk file. The format is binary.
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
  */
 static int lpc2900_handle_read_custom_command( struct command_context_s *cmd_ctx,
                                                char *cmd, char **args, int argc )
 
 /**
  * Enter password to enable potentially dangerous options.
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
  */
 static int lpc2900_handle_password_command(struct command_context_s *cmd_ctx,
                                            char *cmd, char **args, int argc)
 
 /**
  * Write customer info from file to the index sector.
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
  */
 static int lpc2900_handle_write_custom_command( struct command_context_s *cmd_ctx,
                                                 char *cmd, char **args, int argc )
 
 /**
  * Activate 'sector security' for a range of sectors.
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
  */
 static int lpc2900_handle_secure_sector_command(struct command_context_s *cmd_ctx,
                                                 char *cmd, char **args, int argc)
 
 /**
  * Activate JTAG protection.
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
  */
 static int lpc2900_handle_secure_jtag_command(struct command_context_s *cmd_ctx,
                                               char *cmd, char **args, int argc)
 
 /**
  * Register private command handlers.
- *
- * @param cmd_ctx
  */
 static int lpc2900_register_commands(struct command_context_s *cmd_ctx)
 {
 }
 
 
-/**
- * Evaluate flash bank command.
- *
- * Syntax: flash bank lpc2900 0 0 0 0 target# system_base_clock
- *
- * @param cmd_ctx
- * @param cmd
- * @param args
- * @param argc
- * @param bank Pointer to the flash bank descriptor
- */
+/// Evaluate flash bank command.
 static int lpc2900_flash_bank_command(struct command_context_s *cmd_ctx,
                                       char *cmd, char **args, int argc,
                                       struct flash_bank_s *bank)