mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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>
This commit is contained in:
parent
b218c00830
commit
6c324e518b
1 changed files with 0 additions and 6 deletions
|
@ -33,10 +33,6 @@
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
/*--------------------- Export Definitions -------------------------*/
|
|
||||||
|
|
||||||
/*--------------------- Export Types ------------------------------*/
|
|
||||||
|
|
||||||
void MIC_vInit(u32 dwK0, u32 dwK1);
|
void MIC_vInit(u32 dwK0, u32 dwK1);
|
||||||
|
|
||||||
void MIC_vUnInit(void);
|
void MIC_vUnInit(void);
|
||||||
|
@ -48,8 +44,6 @@ void MIC_vAppend(unsigned char *src, unsigned int nBytes);
|
||||||
/* This also resets the message to empty. */
|
/* This also resets the message to empty. */
|
||||||
void MIC_vGetMIC(u32 *pdwL, u32 *pdwR);
|
void MIC_vGetMIC(u32 *pdwL, u32 *pdwR);
|
||||||
|
|
||||||
/*--------------------- Export Macros ------------------------------*/
|
|
||||||
|
|
||||||
/* Rotation functions on 32 bit values */
|
/* Rotation functions on 32 bit values */
|
||||||
#define ROL32(A, n) \
|
#define ROL32(A, n) \
|
||||||
(((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1)))
|
(((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1)))
|
||||||
|
|
Loading…
Reference in a new issue