X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FModules%2FUSB%2FMSC%2Fmsc_proto.h;h=b35a5873fdcaed760bd47a0b21a1191480338fa4;hb=7c63df053c650f4331949b5c1d8f64588fe98620;hp=913822fdb283fd80dc4897d2d4f271eb0b4688af;hpb=587ebbbb92ed0610562ca059121c263e1faa19dd;p=tpg%2Facess2.git diff --git a/KernelLand/Modules/USB/MSC/msc_proto.h b/KernelLand/Modules/USB/MSC/msc_proto.h index 913822fd..b35a5873 100644 --- a/KernelLand/Modules/USB/MSC/msc_proto.h +++ b/KernelLand/Modules/USB/MSC/msc_proto.h @@ -20,14 +20,16 @@ struct sMSC_CBW Uint8 bCBWLUN; Uint8 bCBWLength; Uint8 CBWCB[16]; -}; +} PACKED; + +#define MSC_CSW_SIGNATURE 0x53425355 struct sMSC_CSW { Uint32 dCSWSignature; // = 0x53425355 Uint32 dCSWTag; Uint32 dCSWDataResidue; - Uint8 dCSWStatus; -}; + Uint8 bCSWStatus; +} PACKED; #endif