20 lines
700 B
Diff
20 lines
700 B
Diff
|
Replace u8 with __u8 to make this not fail in dependent packages.
|
||
|
|
||
|
--- include/scsi/scsi.h.orig 2009-10-04 19:19:45.667037936 +0200
|
||
|
+++ include/scsi/scsi.h 2009-10-04 19:20:01.397017561 +0200
|
||
|
@@ -142,10 +142,10 @@ struct scsi_cmnd;
|
||
|
|
||
|
/* defined in T10 SCSI Primary Commands-2 (SPC2) */
|
||
|
struct scsi_varlen_cdb_hdr {
|
||
|
- u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
|
||
|
- u8 control;
|
||
|
- u8 misc[5];
|
||
|
- u8 additional_cdb_length; /* total cdb length - 8 */
|
||
|
+ __u8 opcode; /* opcode always == VARIABLE_LENGTH_CMD */
|
||
|
+ __u8 control;
|
||
|
+ __u8 misc[5];
|
||
|
+ __u8 additional_cdb_length; /* total cdb length - 8 */
|
||
|
__be16 service_action;
|
||
|
/* service specific data follows */
|
||
|
};
|