diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2013-01-23 20:42:43 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-25 14:17:31 -0500 |
commit | 35c3bc2040673ae8b80a60aefe753b4724eb5414 (patch) | |
tree | c5658526eb229a7b4ab24e559d61c85abb98b3d3 /drivers/scsi | |
parent | 8f5059446bbb47fb14fdd743c9e1548713c4b9e8 (diff) |
Drivers: scsi: storvsc: Use the consolidated GUID definition
Use the consolidated GUID definitions in the Hyper-V storage driver.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/storvsc_drv.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c index 01440782feb2..270b3cf6f372 100644 --- a/drivers/scsi/storvsc_drv.c +++ b/drivers/scsi/storvsc_drv.c | |||
@@ -1410,13 +1410,13 @@ enum { | |||
1410 | 1410 | ||
1411 | static const struct hv_vmbus_device_id id_table[] = { | 1411 | static const struct hv_vmbus_device_id id_table[] = { |
1412 | /* SCSI guid */ | 1412 | /* SCSI guid */ |
1413 | { VMBUS_DEVICE(0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d, | 1413 | { HV_SCSI_GUID, |
1414 | 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f) | 1414 | .driver_data = SCSI_GUID |
1415 | .driver_data = SCSI_GUID }, | 1415 | }, |
1416 | /* IDE guid */ | 1416 | /* IDE guid */ |
1417 | { VMBUS_DEVICE(0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44, | 1417 | { HV_IDE_GUID, |
1418 | 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5) | 1418 | .driver_data = IDE_GUID |
1419 | .driver_data = IDE_GUID }, | 1419 | }, |
1420 | { }, | 1420 | { }, |
1421 | }; | 1421 | }; |
1422 | 1422 | ||