From: K. Y. Srinivasan Date: Mon, 24 Oct 2011 18:28:12 +0000 (-0700) Subject: Staging: hv: vmbus: Support building the vmbus driver as part of the kernel X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=43d4e119f944a41a7694552353635ad9b2cd8b37;p=deliverable%2Flinux.git Staging: hv: vmbus: Support building the vmbus driver as part of the kernel Modify the way we initialize the vmbus driver so that all the hyper-v drivers can be linked with the kernel and still ensure that the vmbus driver is fully initialized before the drivers that depend upon the vmbus driver attempt to initialize. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c index 0c048dd8013f..7d3bccb3b2a5 100644 --- a/drivers/hv/vmbus_drv.c +++ b/drivers/hv/vmbus_drv.c @@ -783,4 +783,4 @@ cleanup: MODULE_LICENSE("GPL"); MODULE_VERSION(HV_DRV_VERSION); -module_init(hv_acpi_init); +subsys_initcall(hv_acpi_init);