]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/vt6656/michael.h
Merge tag 'fixes-for-3.10-rc2-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...
[~andy/linux] / drivers / staging / vt6656 / michael.h
index 56331ccfc1dbe5d89142f49a1d6846f2ae52d9df..9c69a42640a7e6d8978599c4dc4b79f733be7465 100644 (file)
 
 #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(u8 * 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)))