diff options
author | Tapasweni Pathak <tapaswenipathak@gmail.com> | 2014-09-22 14:51:09 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-23 13:41:15 -0700 |
commit | 78fc84848accc287ca8bc8c566c45c6d599f9ccb (patch) | |
tree | 9cae9b02b3ae2d8e2389403587d869e362fcbe49 | |
parent | cf329e54b34ed1f0d5e69e67c6622995997777cb (diff) | |
download | linux-78fc84848accc287ca8bc8c566c45c6d599f9ccb.tar.gz linux-78fc84848accc287ca8bc8c566c45c6d599f9ccb.tar.bz2 linux-78fc84848accc287ca8bc8c566c45c6d599f9ccb.zip |
staging: vt6655: shift open brace '{' to previous line
This patch fixes checkpatch.pl error in baseband.c file
ERROR : that open brace { should be on the previous line
Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/vt6655/baseband.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c index 40710bb1be2a..de54923e8861 100644 --- a/drivers/staging/vt6655/baseband.c +++ b/drivers/staging/vt6655/baseband.c @@ -1700,8 +1700,9 @@ static unsigned char byVT3253B0_AGC[CB_VT3253B0_AGC][2] = { {0xF0, 0x00}, }; -static const unsigned short awcFrameTime[MAX_RATE] = -{10, 20, 55, 110, 24, 36, 48, 72, 96, 144, 192, 216}; +static const unsigned short awcFrameTime[MAX_RATE] = { + 10, 20, 55, 110, 24, 36, 48, 72, 96, 144, 192, 216 +}; /*--------------------- Static Functions --------------------------*/ |