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>
This commit is contained in:
Bryan Thompson 2014-10-30 16:18:49 -04:00 committed by Greg Kroah-Hartman
parent 732bf98833
commit 65b96899ce

View File

@ -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++;