Remove as much trailing whitespace as possible.

Change-Id: I873c1c6d00f447269bd841494459efccdd2c19c0
This commit is contained in:
Sean Bright
2017-12-22 09:23:22 -05:00
parent 9ef97b5a91
commit fd0ca1c3f9
700 changed files with 9249 additions and 9661 deletions

View File

@@ -16,8 +16,8 @@
* at the top of the source tree.
*/
/*! \file
* \brief ALSA sound card channel driver
/*! \file
* \brief ALSA sound card channel driver
*
* \author Matthew Fredrickson <creslin@digium.com>
*
@@ -127,7 +127,7 @@ static struct chan_alsa_pvt {
} alsa;
/* Number of buffers... Each is FRAMESIZE/8 ms long. For example
with 160 sample frames, and a buffer size of 3, we have a 60ms buffer,
with 160 sample frames, and a buffer size of 3, we have a 60ms buffer,
usually plenty. */
#define MAX_BUFFER_SIZE 100
@@ -295,7 +295,7 @@ static int soundcard_init(void)
static int alsa_digit(struct ast_channel *c, char digit, unsigned int duration)
{
ast_mutex_lock(&alsalock);
ast_verbose(" << Console Received digit %c of duration %u ms >> \n",
ast_verbose(" << Console Received digit %c of duration %u ms >> \n",
digit, duration);
ast_mutex_unlock(&alsalock);
@@ -686,7 +686,7 @@ static char *console_answer(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
return NULL;
case CLI_GENERATE:
return NULL;
return NULL;
}
if (a->argc != 2)
@@ -732,7 +732,7 @@ static char *console_sendtext(struct ast_cli_entry *e, int cmd, struct ast_cli_a
" Sends a text message for display on the remote terminal.\n";
return NULL;
case CLI_GENERATE:
return NULL;
return NULL;
}
if (a->argc < 3)
@@ -780,9 +780,9 @@ static char *console_hangup(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
" Hangs up any call currently placed on the console.\n";
return NULL;
case CLI_GENERATE:
return NULL;
return NULL;
}
if (a->argc != 2)
return CLI_SHOWUSAGE;
@@ -950,8 +950,8 @@ static int unload_module(void)
* Module loading including tests for configuration or dependencies.
* This function can return AST_MODULE_LOAD_FAILURE, AST_MODULE_LOAD_DECLINE,
* or AST_MODULE_LOAD_SUCCESS. If a dependency or environment variable fails
* tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
* configuration file or other non-critical problem return
* tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
* configuration file or other non-critical problem return
* AST_MODULE_LOAD_DECLINE. On success return AST_MODULE_LOAD_SUCCESS.
*/
static int load_module(void)