summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/blkvsc_drv.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-08-25 11:41:33 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2011-08-25 11:41:33 -0700
commitc45cf2d4976e2fcde68d88898a37af70f2caaf5d (patch)
tree437ec34adfbe6e02a8e17d38d7fa66e746c6a620 /drivers/staging/hv/blkvsc_drv.c
parent283f21294ea02f7608e0c833b9c982712427fc50 (diff)
downloadop-kernel-dev-c45cf2d4976e2fcde68d88898a37af70f2caaf5d.zip
op-kernel-dev-c45cf2d4976e2fcde68d88898a37af70f2caaf5d.tar.gz
Staging: hv: create VMBUS_DEVICE macro and use it.
This is to be used to be able to write hv_vmbus_device_id tables easier. This patch also converts all hv drivers to use the macro, saving some lines of code and making things easier to read overall. Cc: K. Y. Srinivasan <kys@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/blkvsc_drv.c')
-rw-r--r--drivers/staging/hv/blkvsc_drv.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c
index 9b99387..d170f24 100644
--- a/drivers/staging/hv/blkvsc_drv.c
+++ b/drivers/staging/hv/blkvsc_drv.c
@@ -795,16 +795,10 @@ static void blkvsc_request(struct request_queue *queue)
}
static const struct hv_vmbus_device_id id_table[] = {
- {
- /* IDE guid */
- .guid = {
- 0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44,
- 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5
- }
- },
- {
- .guid = { }
- },
+ /* IDE guid */
+ { VMBUS_DEVICE(0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44,
+ 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5) },
+ { },
};
MODULE_DEVICE_TABLE(vmbus, id_table);
OpenPOWER on IntegriCloud