diff options
author | Guillaume Clement <gclement@baobob.org> | 2014-07-25 01:06:16 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-27 11:21:27 -0700 |
commit | 6b7112719fd48c29f35333ef152a5a450f01dc83 (patch) | |
tree | f6531ecd765880458894ddbb1deb1b006e2eccfc /drivers/staging/vt6655/rf.c | |
parent | fe802546ce748b5af933157e181f1d653ac5ec9c (diff) |
staging: vt6655: Add missing blank lines after declarations
This patch fixes the missing blank lines after declarations in vt6655
reported by checkpatch.
Signed-off-by: Guillaume Clement <gclement@baobob.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/rf.c')
-rw-r--r-- | drivers/staging/vt6655/rf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c index 33913e5b1cc1..d2d7dff3dce7 100644 --- a/drivers/staging/vt6655/rf.c +++ b/drivers/staging/vt6655/rf.c @@ -750,6 +750,7 @@ bool RFbInit( ) { bool bResult = true; + switch (pDevice->byRFType) { case RF_AIROHA: case RF_AL2230S: @@ -786,6 +787,7 @@ bool RFbInit( bool RFbSelectChannel(void __iomem *dwIoBase, unsigned char byRFType, unsigned char byChannel) { bool bResult = true; + switch (byRFType) { case RF_AIROHA: case RF_AL2230S: |