/usr/src/linux/include/scsi/scsi.h
in kernel revision 2.5.60 I find this in line 200 - 205:
/*
* ScsiLun: 8 byte LUN.
*/
typedef struct scsi_lun {
u8 scsi_lun[8];
} ScsiLun;
This produces problems when compiling a package that doesn't know about
'u8'.
In any case shouldn't it be 'uint8_t' so we get:
/*
* ScsiLun: 8 byte LUN.
*/
typedef struct scsi_lun {
uint8_t scsi_lun[8];
} ScsiLun;
Just curious from a non-regular on lkml (and I am getting out quick because
of the volume :-)
Thank you very much,
Peter
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/