Skip to content

Commit

Permalink
Staging: vt6655: Align a function declaration
Browse files Browse the repository at this point in the history
Align function return type and function arguments to improve
readability.

Signed-off-by: Madhumitha Prabakaran <madhumithabiw@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Madhumitha Prabakaran authored and Greg Kroah-Hartman committed Feb 28, 2019
1 parent a248ca3 commit ffc33e9
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions drivers/staging/vt6655/baseband.c
Original file line number Diff line number Diff line change
Expand Up @@ -1704,13 +1704,9 @@ static const unsigned short awcFrameTime[MAX_RATE] = {
* Return Value: FrameTime
*
*/
unsigned int
BBuGetFrameTime(
unsigned char byPreambleType,
unsigned char byPktType,
unsigned int cbFrameLength,
unsigned short wRate
)
unsigned int BBuGetFrameTime(unsigned char byPreambleType,
unsigned char byPktType,
unsigned int cbFrameLength, unsigned short wRate)
{
unsigned int uFrameTime;
unsigned int uPreamble;
Expand Down

0 comments on commit ffc33e9

Please sign in to comment.