summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys/virtpci
diff options
context:
space:
mode:
authorBryan Thompson <bryan.thompson@unisys.com>2014-10-30 16:18:49 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-30 13:35:35 -0700
commit65b96899ce7f12711656f0b3203554fd99e074a0 (patch)
tree171ce67c4f43e5f2c7a81d018d04a423b1274085 /drivers/staging/unisys/virtpci
parent732bf98833d8a3f13a658e24513ca5661a4be62f (diff)
downloadop-kernel-dev-65b96899ce7f12711656f0b3203554fd99e074a0.zip
op-kernel-dev-65b96899ce7f12711656f0b3203554fd99e074a0.tar.gz
staging: unisys: virtpci: Place logical continuation at the end of a line
Move the && logical continuation from the start of the second line of an if statement to the end of the first line. Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys/virtpci')
-rw-r--r--drivers/staging/unisys/virtpci/virtpci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/virtpci/virtpci.c b/drivers/staging/unisys/virtpci/virtpci.c
index 3cfa767..baf12e5 100644
--- a/drivers/staging/unisys/virtpci/virtpci.c
+++ b/drivers/staging/unisys/virtpci/virtpci.c
@@ -696,8 +696,8 @@ virtpci_match_device(const struct pci_device_id *ids,
DBGINF("ids->vendor:%x dev->vendor:%x ids->device:%x dev->device:%x\n",
ids->vendor, dev->vendor, ids->device, dev->device);
- if ((ids->vendor == dev->vendor)
- && (ids->device == dev->device))
+ if ((ids->vendor == dev->vendor) &&
+ (ids->device == dev->device))
return ids;
ids++;
OpenPOWER on IntegriCloud