]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/staging/vt6656/aes_ccmp.c
Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git...
[karo-tx-linux.git] / drivers / staging / vt6656 / aes_ccmp.c
index 31855e8c010bb2d376d0c02adbfe5bd0ce58fb92..28a4c4c30416cc7fb699a6d593216d3d1a3a8839 100644 (file)
 #include "device.h"
 #include "80211hdr.h"
 
-/*---------------------  Static Definitions -------------------------*/
-
-/*---------------------  Static Classes  ----------------------------*/
-
-/*---------------------  Static Variables  --------------------------*/
-
 /*
  * SBOX Table
  */
@@ -100,12 +94,6 @@ u8 dot3_table[256] = {
        0x0b, 0x08, 0x0d, 0x0e, 0x07, 0x04, 0x01, 0x02, 0x13, 0x10, 0x15, 0x16, 0x1f, 0x1c, 0x19, 0x1a
 };
 
-/*---------------------  Static Functions  --------------------------*/
-
-/*---------------------  Export Variables  --------------------------*/
-
-/*---------------------  Export Functions  --------------------------*/
-
 static void xor_128(u8 *a, u8 *b, u8 *out)
 {
        u32 * dwPtrA = (u32 *) a;
@@ -118,7 +106,6 @@ static void xor_128(u8 *a, u8 *b, u8 *out)
        (*dwPtrOut++) = (*dwPtrA++) ^ (*dwPtrB++);
 }
 
-
 static void xor_32(u8 *a, u8 *b, u8 *out)
 {
        u32 * dwPtrA = (u32 *) a;