diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-11 08:36:44 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-11 08:49:19 -0600 |
commit | 407dd1644302ea78fa5d740e67a1c09677aa18a4 (patch) | |
tree | 3fe6bef5d17db41b02578a05cb1caef66af2355c /drivers/hv | |
parent | 46a971913611a23478283931460a95be962ce329 (diff) | |
download | linux-3.10-407dd1644302ea78fa5d740e67a1c09677aa18a4.tar.gz linux-3.10-407dd1644302ea78fa5d740e67a1c09677aa18a4.tar.bz2 linux-3.10-407dd1644302ea78fa5d740e67a1c09677aa18a4.zip |
Staging: hv: remove unneeded asm include file in hyperv.h
No one outside of the hyperv core needs to include the asm/hyperv.h
file, so don't put it in the "global" include/linux/hyperv.h file.
Cc: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/connection.c | 2 | ||||
-rw-r--r-- | drivers/hv/hv.c | 2 | ||||
-rw-r--r-- | drivers/hv/vmbus_drv.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c index 5f438b65006..650c9f0b664 100644 --- a/drivers/hv/connection.c +++ b/drivers/hv/connection.c @@ -30,7 +30,7 @@ #include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/hyperv.h> - +#include <asm/hyperv.h> #include "hyperv_vmbus.h" diff --git a/drivers/hv/hv.c b/drivers/hv/hv.c index 931b7b03078..0fb100ed91a 100644 --- a/drivers/hv/hv.c +++ b/drivers/hv/hv.c @@ -26,7 +26,7 @@ #include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/hyperv.h> - +#include <asm/hyperv.h> #include "hyperv_vmbus.h" /* The one and only */ diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c index b0d08f980de..bb9f20507d7 100644 --- a/drivers/hv/vmbus_drv.c +++ b/drivers/hv/vmbus_drv.c @@ -33,7 +33,7 @@ #include <acpi/acpi_bus.h> #include <linux/completion.h> #include <linux/hyperv.h> - +#include <asm/hyperv.h> #include "hyperv_vmbus.h" |