Commit a552397d authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

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

Size of long issues replace with u32.
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cf5d170e
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
#ifndef __TTYPE_H__ #ifndef __TTYPE_H__
#define __TTYPE_H__ #define __TTYPE_H__
#include <linux/types.h>
/******* Common definitions and typedefs ***********************************/ /******* Common definitions and typedefs ***********************************/
typedef int BOOL; typedef int BOOL;
...@@ -51,8 +53,8 @@ typedef unsigned long DWORD; // 32-bit ...@@ -51,8 +53,8 @@ typedef unsigned long DWORD; // 32-bit
// which is NOT really a floating point number. // which is NOT really a floating point number.
typedef union tagUQuadWord { typedef union tagUQuadWord {
struct { struct {
DWORD dwLowDword; u32 dwLowDword;
DWORD dwHighDword; u32 dwHighDword;
} u; } u;
double DoNotUseThisField; double DoNotUseThisField;
} UQuadWord; } UQuadWord;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment