diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-23 12:43:05 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:21 -0700 |
commit | a5c30d94b226ca473b1001b382e9e465921f8301 (patch) | |
tree | ae63d5ce4e2358b56c2f7ca9ba4a3eef3b225005 /drivers/staging/epl/EplFrame.h | |
parent | 2ed53cf8a523d3e2fc133d892f8d040c3fc9656d (diff) |
Staging: epl: remove QWORD
It's u64 in kernelspace, not QWORD.
Cc: Daniel Krueger <daniel.krueger@systec-electronic.com>
Cc: Ronald Sieber <Ronald.Sieber@systec-electronic.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/epl/EplFrame.h')
-rw-r--r-- | drivers/staging/epl/EplFrame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/epl/EplFrame.h b/drivers/staging/epl/EplFrame.h index 0f8d59f937b..156f907a1cf 100644 --- a/drivers/staging/epl/EplFrame.h +++ b/drivers/staging/epl/EplFrame.h @@ -130,7 +130,7 @@ typedef struct { // Offset 20 tEplNetTime m_le_NetTime; // supported if D_NMT_NetTimeIsRealTime_BOOL is set // Offset 28 - QWORD m_le_RelativeTime; // in us (supported if D_NMT_RelativeTime_BOOL is set) + u64 m_le_RelativeTime; // in us (supported if D_NMT_RelativeTime_BOOL is set) } PACK_STRUCT tEplSocFrame; @@ -201,7 +201,7 @@ typedef struct { u8 m_le_bFlag2; // Flags: PR, RS u8 m_le_bNmtStatus; // NMT state u8 m_le_bRes1[3]; - QWORD m_le_qwStaticError; // static error bit field + u64 m_le_qwStaticError; // static error bit field tEplErrHistoryEntry m_le_aErrHistoryEntry[14]; } PACK_STRUCT tEplStatusResponse; @@ -225,7 +225,7 @@ typedef struct { DWORD m_le_dwProductCode; // NMT_IdentityObject_REC.ProductCode_U32 DWORD m_le_dwRevisionNumber; // NMT_IdentityObject_REC.RevisionNo_U32 DWORD m_le_dwSerialNumber; // NMT_IdentityObject_REC.SerialNo_U32 - QWORD m_le_qwVendorSpecificExt1; + u64 m_le_qwVendorSpecificExt1; DWORD m_le_dwVerifyConfigurationDate; // CFM_VerifyConfiguration_REC.ConfDate_U32 DWORD m_le_dwVerifyConfigurationTime; // CFM_VerifyConfiguration_REC.ConfTime_U32 DWORD m_le_dwApplicationSwDate; // PDL_LocVerApplSw_REC.ApplSwDate_U32 on programmable device or date portion of NMT_ManufactSwVers_VS on non-programmable device |