summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/michael.h
diff options
context:
space:
mode:
authorAndres More2013-02-26 02:32:51 +0100
committerGreg Kroah-Hartman2013-03-11 17:18:46 +0100
commitb902fbfebf2c80c3782e41eda24b487964a47fd1 (patch)
tree618fc5d478aa7b8d0b206c83fc93f490e44ffbe2 /drivers/staging/vt6656/michael.h
parentStaging: bcm: Fix spelling error in PHSModule.c (diff)
downloadkernel-qcow2-linux-b902fbfebf2c80c3782e41eda24b487964a47fd1.tar.gz
kernel-qcow2-linux-b902fbfebf2c80c3782e41eda24b487964a47fd1.tar.xz
kernel-qcow2-linux-b902fbfebf2c80c3782e41eda24b487964a47fd1.zip
staging: vt6656: replaced custom BYTE definition with u8
Checkpatch findings were not resolved, only direct replacement. sed -i 's/\bBYTE\b/u8/g' drivers/staging/vt6656/*.[ch] sed -i 's/\bPBYTE\b/u8 */g' 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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6656/michael.h b/drivers/staging/vt6656/michael.h
index 81351f506232..074023221b43 100644
--- a/drivers/staging/vt6656/michael.h
+++ b/drivers/staging/vt6656/michael.h
@@ -40,7 +40,7 @@ void MIC_vInit(DWORD dwK0, DWORD dwK1);
void MIC_vUnInit(void);
// Append bytes to the message to be MICed
-void MIC_vAppend(PBYTE src, unsigned int nBytes);
+void MIC_vAppend(u8 * src, unsigned int nBytes);
// Get the MIC result. Destination should accept 8 bytes of result.
// This also resets the message to empty.