Skip to content

Commit

Permalink
Xen: fix whitespaces,tabs coding style issue in drivers/xen/pci.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ruslan Pisarev authored and Konrad Rzeszutek Wilk committed Jul 26, 2011
1 parent 7b0ac95 commit 4b01098
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/xen/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand All @@ -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,
};

Expand Down

0 comments on commit 4b01098

Please sign in to comment.