Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755635Ab1EJJzP (ORCPT ); Tue, 10 May 2011 05:55:15 -0400 Received: from p3plsmtps2ded01.prod.phx3.secureserver.net ([208.109.80.58]:46532 "HELO p3plsmtps2ded01-02.prod.phx3.secureserver.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755006Ab1EJJyJ (ORCPT ); Tue, 10 May 2011 05:54:09 -0400 From: "K. Y. Srinivasan" To: gregkh@suse.de, linux-kernel@vger.kernel.org, devel@linuxdriverproject.org, virtualization@lists.osdl.org Cc: "K. Y. Srinivasan" , Haiyang Zhang , Abhishek Kane , Hank Janssen Subject: [PATCH 184/206] Staging: hv: Include the new header files in vmbus driver Date: Mon, 9 May 2011 14:57:46 -0700 Message-Id: <1304978288-22999-184-git-send-email-kys@microsoft.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1304978288-22999-1-git-send-email-kys@microsoft.com> References: <1304978242-22958-1-git-send-email-kys@microsoft.com> <1304978288-22999-1-git-send-email-kys@microsoft.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3729 Lines: 128 Include the new header files in vmbus driver. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Abhishek Kane Signed-off-by: Hank Janssen --- drivers/staging/hv/channel.c | 6 +++--- drivers/staging/hv/channel_mgmt.c | 7 +++---- drivers/staging/hv/connection.c | 5 ++--- drivers/staging/hv/hv.c | 6 +++--- drivers/staging/hv/ring_buffer.c | 4 ++-- drivers/staging/hv/vmbus_drv.c | 8 ++------ 6 files changed, 15 insertions(+), 21 deletions(-) diff --git a/drivers/staging/hv/channel.c b/drivers/staging/hv/channel.c index a2a190e..b9b082c 100644 --- a/drivers/staging/hv/channel.c +++ b/drivers/staging/hv/channel.c @@ -26,9 +26,9 @@ #include #include #include -#include "hv_api.h" -#include "logging.h" -#include "vmbus_private.h" + +#include +#include "hyperv_vmbus.h" #define NUM_PAGES_SPANNED(addr, len) \ ((PAGE_ALIGN(addr + len) >> PAGE_SHIFT) - (addr >> PAGE_SHIFT)) diff --git a/drivers/staging/hv/channel_mgmt.c b/drivers/staging/hv/channel_mgmt.c index 33cb5d5..0e4e05a 100644 --- a/drivers/staging/hv/channel_mgmt.c +++ b/drivers/staging/hv/channel_mgmt.c @@ -28,10 +28,9 @@ #include #include #include -#include "hv_api.h" -#include "logging.h" -#include "vmbus_private.h" -#include "utils.h" + +#include +#include "hyperv_vmbus.h" struct vmbus_channel_message_table_entry { enum vmbus_channel_message_type message_type; diff --git a/drivers/staging/hv/connection.c b/drivers/staging/hv/connection.c index dd62585..445db48 100644 --- a/drivers/staging/hv/connection.c +++ b/drivers/staging/hv/connection.c @@ -28,10 +28,9 @@ #include #include #include -#include "hv_api.h" -#include "logging.h" -#include "vmbus_private.h" +#include +#include "hyperv_vmbus.h" struct vmbus_connection vmbus_connection = { .conn_state = DISCONNECTED, diff --git a/drivers/staging/hv/hv.c b/drivers/staging/hv/hv.c index 2efac38..037424b6 100644 --- a/drivers/staging/hv/hv.c +++ b/drivers/staging/hv/hv.c @@ -25,9 +25,9 @@ #include #include #include -#include "hv_api.h" -#include "logging.h" -#include "vmbus_private.h" + +#include +#include "hyperv_vmbus.h" /* The one and only */ struct hv_context hv_context = { diff --git a/drivers/staging/hv/ring_buffer.c b/drivers/staging/hv/ring_buffer.c index badf52a..ec262c1 100644 --- a/drivers/staging/hv/ring_buffer.c +++ b/drivers/staging/hv/ring_buffer.c @@ -25,9 +25,9 @@ #include #include -#include "logging.h" -#include "ring_buffer.h" +#include +#include "hyperv_vmbus.h" /* #defines */ diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c index 5dcd87a..5a049ab 100644 --- a/drivers/staging/hv/vmbus_drv.c +++ b/drivers/staging/hv/vmbus_drv.c @@ -34,13 +34,9 @@ #include #include #include -#include "version_info.h" -#include "hv_api.h" -#include "logging.h" -#include "vmbus.h" -#include "channel.h" -#include "vmbus_private.h" +#include +#include "hyperv_vmbus.h" static struct pci_dev *hv_pci_dev; -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/