WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH 4/7] Xen: fix whitespaces, tabs coding style issue in

To: jeremy.fitzhardinge@xxxxxxxxxx
Subject: [Xen-devel] [PATCH 4/7] Xen: fix whitespaces, tabs coding style issue in drivers/xen/pci.c
From: ruslanpisarev@xxxxxxxxx
Date: Tue, 26 Jul 2011 14:16:38 +0300
Cc: Ruslan Pisarev <ruslan@xxxxxxxxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxx, virtualization@xxxxxxxxxxxxxxxxxxxxxxxxxx, konrad.wilk@xxxxxxxxxx
Delivery-date: Wed, 27 Jul 2011 08:21:39 -0700
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=p6DLztR6/ZmSXGbkjb2Usm4T/8L+dqW0WnDRC4TgMoE=; b=hemQKPuHG7o9yKZ9c2moAU+db3Kolpfj8t1YBJmFgX34l2Q1ey0Vz4yPJdVnC2FvGq beiZvfjo7boEM5J5fKc0HkJAp8dr62cOIkgOvbAl4YsPpMtxryg2+iqCSG1LEtFvO3tS 93oVQyzqjAK382DRN9Z+XjYC0GR/IZav5lIXE=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
From: Ruslan Pisarev <ruslan@xxxxxxxxxxxxxxx>

This is a patch to the pci.c file that fixed up whitespaces, tabs warnings 
found by the checkpatch.pl tools.

Signed-off-by: Ruslan Pisarev <ruslan@xxxxxxxxxxxxxxx>
---
 drivers/xen/pci.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/xen/pci.c b/drivers/xen/pci.c
index cef4baf..c4448ee 100644
--- a/drivers/xen/pci.c
+++ b/drivers/xen/pci.c
@@ -36,7 +36,7 @@ static int xen_add_device(struct device *dev)
                struct physdev_manage_pci_ext manage_pci_ext = {
                        .bus            = pci_dev->bus->number,
                        .devfn          = pci_dev->devfn,
-                       .is_virtfn      = 1,
+                       .is_virtfn      = 1,
                        .physfn.bus     = pci_dev->physfn->bus->number,
                        .physfn.devfn   = pci_dev->physfn->devfn,
                };
@@ -56,7 +56,7 @@ static int xen_add_device(struct device *dev)
                        &manage_pci_ext);
        } else {
                struct physdev_manage_pci manage_pci = {
-                       .bus    = pci_dev->bus->number,
+                       .bus    = pci_dev->bus->number,
                        .devfn  = pci_dev->devfn,
                };
 
-- 
1.7.4.1


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH 4/7] Xen: fix whitespaces, tabs coding style issue in drivers/xen/pci.c, ruslanpisarev <=