summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/tcrc.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-03-18 20:55:41 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 11:16:17 -0700
commit96d69e201bbdb05c363e899138f9f42bc8ad8f88 (patch)
treef3ba7f8c5436cfbce1617f415febbd681fe78fd4 /drivers/staging/vt6655/tcrc.c
parentbda2a44e2a015535f08aecd5c98e263098db9e75 (diff)
downloadlinux-96d69e201bbdb05c363e899138f9f42bc8ad8f88.tar.bz2
staging: vt6655: Remove unnecessary blank lines
Remove a bunch of useless vertical whitespace. Convert 3 or more consecutive newlines to 2. Remove blank lines after open brace and before close brace. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/tcrc.c')
-rw-r--r--drivers/staging/vt6655/tcrc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/vt6655/tcrc.c b/drivers/staging/vt6655/tcrc.c
index ec14033b0116..ed6868a9c16e 100644
--- a/drivers/staging/vt6655/tcrc.c
+++ b/drivers/staging/vt6655/tcrc.c
@@ -113,9 +113,6 @@ static const unsigned long s_adwCrc32Table[256] = {
/*--------------------- Export Variables --------------------------*/
-
-
-
/*+
*
* Description:
@@ -145,7 +142,6 @@ unsigned long CRCdwCrc32(unsigned char *pbyData, unsigned int cbByte, unsigned l
return dwCrc;
}
-
/*+
*
* Description:
@@ -169,7 +165,6 @@ unsigned long CRCdwGetCrc32(unsigned char *pbyData, unsigned int cbByte)
return ~CRCdwCrc32(pbyData, cbByte, 0xFFFFFFFFL);
}
-
/*+
*
* Description:
@@ -194,5 +189,3 @@ unsigned long CRCdwGetCrc32Ex(unsigned char *pbyData, unsigned int cbByte, unsig
{
return CRCdwCrc32(pbyData, cbByte, dwPreCRC);
}
-
-