diff options
author | Ruslan Pisarev <ruslan@rpisarev.org.ua> | 2011-07-26 07:16:38 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-26 13:31:59 -0400 |
commit | 4b0109830842fa645c7f7460dc713cedfe4473f6 (patch) | |
tree | 10c4f99853edfb639b52c5575314fc3db493af7f /drivers/xen | |
parent | 7b0ac956d91b91a1e05e4e0b454d65710fc73cd8 (diff) |
Xen: fix whitespaces,tabs coding style issue in drivers/xen/pci.c
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@rpisarev.org.ua>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | 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 cef4bafc07dc..c4448ee5595f 100644 --- a/drivers/xen/pci.c +++ b/drivers/xen/pci.c | |||
@@ -36,7 +36,7 @@ static int xen_add_device(struct device *dev) | |||
36 | struct physdev_manage_pci_ext manage_pci_ext = { | 36 | struct physdev_manage_pci_ext manage_pci_ext = { |
37 | .bus = pci_dev->bus->number, | 37 | .bus = pci_dev->bus->number, |
38 | .devfn = pci_dev->devfn, | 38 | .devfn = pci_dev->devfn, |
39 | .is_virtfn = 1, | 39 | .is_virtfn = 1, |
40 | .physfn.bus = pci_dev->physfn->bus->number, | 40 | .physfn.bus = pci_dev->physfn->bus->number, |
41 | .physfn.devfn = pci_dev->physfn->devfn, | 41 | .physfn.devfn = pci_dev->physfn->devfn, |
42 | }; | 42 | }; |
@@ -56,7 +56,7 @@ static int xen_add_device(struct device *dev) | |||
56 | &manage_pci_ext); | 56 | &manage_pci_ext); |
57 | } else { | 57 | } else { |
58 | struct physdev_manage_pci manage_pci = { | 58 | struct physdev_manage_pci manage_pci = { |
59 | .bus = pci_dev->bus->number, | 59 | .bus = pci_dev->bus->number, |
60 | .devfn = pci_dev->devfn, | 60 | .devfn = pci_dev->devfn, |
61 | }; | 61 | }; |
62 | 62 | ||