Commit b30c2fc1 authored by James Bottomley's avatar James Bottomley

[SCSI] scsi.h: add macro for enclosure bit of inquiry data

The macro tells us whether the device is (or contains) an enclosure device.
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent a0899d4d
...@@ -387,6 +387,10 @@ static inline int scsi_device_qas(struct scsi_device *sdev) ...@@ -387,6 +387,10 @@ static inline int scsi_device_qas(struct scsi_device *sdev)
return 0; return 0;
return sdev->inquiry[56] & 0x02; return sdev->inquiry[56] & 0x02;
} }
static inline int scsi_device_enclosure(struct scsi_device *sdev)
{
return sdev->inquiry[6] & (1<<6);
}
#define MODULE_ALIAS_SCSI_DEVICE(type) \ #define MODULE_ALIAS_SCSI_DEVICE(type) \
MODULE_ALIAS("scsi:t-" __stringify(type) "*") MODULE_ALIAS("scsi:t-" __stringify(type) "*")
......
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