summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/michael.h
diff options
context:
space:
mode:
authorAndres More2013-02-26 02:32:53 +0100
committerGreg Kroah-Hartman2013-03-11 17:18:47 +0100
commit52a7e64b06f70404c2539e4462063a8df9e4ee13 (patch)
tree9662cd6bbfdba1e9a3e289eea044992a1b19945e /drivers/staging/vt6656/michael.h
parentstaging: vt6656: replaced custom WORD definition with u16 (diff)
downloadkernel-qcow2-linux-52a7e64b06f70404c2539e4462063a8df9e4ee13.tar.gz
kernel-qcow2-linux-52a7e64b06f70404c2539e4462063a8df9e4ee13.tar.xz
kernel-qcow2-linux-52a7e64b06f70404c2539e4462063a8df9e4ee13.zip
staging: vt6656: replaced custom DWORD definition with u32
Checkpatch findings were not resolved. sed -i 's/\bDWORD\b/u32/g' drivers/staging/vt6656/*.[ch] sed -i 's/\bPDWORD\b/u32 */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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6656/michael.h b/drivers/staging/vt6656/michael.h
index 074023221b43..2cdb07ed53ad 100644
--- a/drivers/staging/vt6656/michael.h
+++ b/drivers/staging/vt6656/michael.h
@@ -35,7 +35,7 @@
/*--------------------- Export Types ------------------------------*/
-void MIC_vInit(DWORD dwK0, DWORD dwK1);
+void MIC_vInit(u32 dwK0, u32 dwK1);
void MIC_vUnInit(void);
@@ -44,7 +44,7 @@ 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.
-void MIC_vGetMIC(PDWORD pdwL, PDWORD pdwR);
+void MIC_vGetMIC(u32 * pdwL, u32 * pdwR);
/*--------------------- Export Macros ------------------------------*/