From: Igor Bezukh Date: Fri, 25 Jul 2014 16:50:25 +0000 (+0300) Subject: Staging: vt6655: removed redundant comments from michael.h X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6c324e518b63e89e7ea9fdd96e82de543dbef53f;p=deliverable%2Flinux.git Staging: vt6655: removed redundant comments from michael.h Removed redundant comments from michael.h header file. Signed-off-by: Igor Bezukh Signed-off-by: Greg Kroah-Hartman --- 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 -/*--------------------- 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)))