forked from Minki/linux
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:
parent
cf5d170e02
commit
a552397d5e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user