]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/vt6655/rc4.c
Staging: vt6655: remove VOID definition and use
[~andy/linux] / drivers / staging / vt6655 / rc4.c
index e6c61312fd282d07d2113a5daa3717b4ef4d9bfd..4a53f159cb3072acc353b864d2a1f3a082954791 100644 (file)
@@ -32,7 +32,7 @@
 
 #include "rc4.h"
 
-VOID rc4_init(PRC4Ext pRC4, PBYTE pbyKey, UINT cbKey_len)
+void rc4_init(PRC4Ext pRC4, PBYTE pbyKey, UINT cbKey_len)
 {
     UINT  ust1, ust2;
     UINT  keyindex;
@@ -78,7 +78,7 @@ UINT rc4_byte(PRC4Ext pRC4)
     return pbyst[(ustx + usty) & 0xff];
 }
 
-VOID rc4_encrypt(PRC4Ext pRC4, PBYTE pbyDest,
+void rc4_encrypt(PRC4Ext pRC4, PBYTE pbyDest,
                      PBYTE pbySrc, UINT cbData_len)
 {
     UINT ii;