summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorIgor Bezukh <igbzkh@gmail.com>2014-07-25 19:50:25 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-27 11:38:42 -0700
commit6c324e518b63e89e7ea9fdd96e82de543dbef53f (patch)
treeab7f1b11ea30bd310efe97935e97d00cebb63a81 /drivers/staging
parentb218c00830ec49474b164239ca64d120c4a727a6 (diff)
downloadlinux-6c324e518b63e89e7ea9fdd96e82de543dbef53f.tar.bz2
Staging: vt6655: removed redundant comments from michael.h
Removed redundant comments from michael.h header file. Signed-off-by: Igor Bezukh <igbzkh@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/vt6655/michael.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/vt6655/michael.h b/drivers/staging/vt6655/michael.h
index f6c2c15d9cb6..86cb140e3087 100644
--- a/drivers/staging/vt6655/michael.h
+++ b/drivers/staging/vt6655/michael.h
@@ -33,10 +33,6 @@
#include <linux/types.h>
-/*--------------------- Export Definitions -------------------------*/
-
-/*--------------------- Export Types ------------------------------*/
-
void MIC_vInit(u32 dwK0, u32 dwK1);
void MIC_vUnInit(void);
@@ -48,8 +44,6 @@ void MIC_vAppend(unsigned char *src, unsigned int nBytes);
/* This also resets the message to empty. */
void MIC_vGetMIC(u32 *pdwL, u32 *pdwR);
-/*--------------------- Export Macros ------------------------------*/
-
/* Rotation functions on 32 bit values */
#define ROL32(A, n) \
(((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1)))