summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/michael.h
diff options
context:
space:
mode:
authorAndres More2013-03-27 00:18:30 +0100
committerGreg Kroah-Hartman2013-03-29 00:06:27 +0100
commit9fbafdd9add10e349deeb1f38290943d5107e276 (patch)
tree54ad92d792967727d0ca7f37579a3ecf4c313d96 /drivers/staging/vt6656/michael.h
parentstaging: sep: Fix typo in printk within sep driver (diff)
downloadkernel-qcow2-linux-9fbafdd9add10e349deeb1f38290943d5107e276.tar.gz
kernel-qcow2-linux-9fbafdd9add10e349deeb1f38290943d5107e276.tar.xz
kernel-qcow2-linux-9fbafdd9add10e349deeb1f38290943d5107e276.zip
staging: vt6656: remove consecutive newlines
Several sed -i '/^$/{ N /^\n$/ D }' drivers/staging/vt6656/*.[ch] Signed-off-by: Andres More <more.andres@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/michael.h')
-rw-r--r--drivers/staging/vt6656/michael.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/staging/vt6656/michael.h b/drivers/staging/vt6656/michael.h
index d5604c890c20..9c69a42640a7 100644
--- a/drivers/staging/vt6656/michael.h
+++ b/drivers/staging/vt6656/michael.h
@@ -33,8 +33,6 @@
#include <linux/types.h>
-
-
void MIC_vInit(u32 dwK0, u32 dwK1);
void MIC_vUnInit(void);
@@ -46,7 +44,6 @@ void MIC_vAppend(u8 * src, unsigned int nBytes);
// This also resets the message to empty.
void MIC_vGetMIC(u32 * pdwL, u32 * pdwR);
-
// Rotation functions on 32 bit values
#define ROL32(A, n) \
(((A) << (n)) | (((A)>>(32-(n))) & ((1UL << (n)) - 1)))