staging: vt6656: 64 bit fixes: use u32 for QWORD definition.

Size of long issues replace with u32.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2012-11-11 15:32:05 +00:00 committed by Greg Kroah-Hartman
parent cf5d170e02
commit a552397d5e

View File

@ -29,6 +29,8 @@
#ifndef __TTYPE_H__
#define __TTYPE_H__
#include <linux/types.h>
/******* Common definitions and typedefs ***********************************/
typedef int BOOL;
@ -51,8 +53,8 @@ typedef unsigned long DWORD; // 32-bit
// which is NOT really a floating point number.
typedef union tagUQuadWord {
struct {
DWORD dwLowDword;
DWORD dwHighDword;
u32 dwLowDword;
u32 dwHighDword;
} u;
double DoNotUseThisField;
} UQuadWord;