summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6655/michael.h
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2014-04-07 23:49:35 (GMT)
committerScott Wood <scottwood@freescale.com>2014-04-07 23:49:35 (GMT)
commit62b8c978ee6b8d135d9e7953221de58000dba986 (patch)
tree683b04b2e627f6710c22c151b23c8cc9a165315e /drivers/staging/vt6655/michael.h
parent78fd82238d0e5716578c326404184a27ba67fd6e (diff)
downloadlinux-fsl-qoriq-62b8c978ee6b8d135d9e7953221de58000dba986.tar.xz
Rewind v3.13-rc3+ (78fd82238d0e5716) to v3.12
Diffstat (limited to 'drivers/staging/vt6655/michael.h')
-rw-r--r--drivers/staging/vt6655/michael.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/vt6655/michael.h b/drivers/staging/vt6655/michael.h
index 387d206..0828d18 100644
--- a/drivers/staging/vt6655/michael.h
+++ b/drivers/staging/vt6655/michael.h
@@ -39,18 +39,18 @@ void MIC_vInit(unsigned long dwK0, unsigned long dwK1);
void MIC_vUnInit(void);
-/* Append bytes to the message to be MICed */
+// Append bytes to the message to be MICed
void MIC_vAppend(unsigned char *src, unsigned int nBytes);
-/* Get the MIC result. Destination should accept 8 bytes of result. */
-/* This also resets the message to empty. */
+// Get the MIC result. Destination should accept 8 bytes of result.
+// This also resets the message to empty.
void MIC_vGetMIC(unsigned long *pdwL, unsigned long *pdwR);
/*--------------------- Export Macros ------------------------------*/
-/* Rotation functions on 32 bit values */
+// Rotation functions on 32 bit values
#define ROL32(A, n) \
(((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1)))
#define ROR32(A, n) ROL32((A), 32-(n))
-#endif /*__MICHAEL_H__ */
+#endif //__MICHAEL_H__