]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: unisys: virtpci: Place logical continuation at the end of a line
authorBryan Thompson <bryan.thompson@unisys.com>
Thu, 30 Oct 2014 20:18:49 +0000 (16:18 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Oct 2014 20:35:35 +0000 (13:35 -0700)
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>
drivers/staging/unisys/virtpci/virtpci.c

index 3cfa7671ec06a3d32fe7552e4f52f82c3287d9e3..baf12e54b6d92a4eb2e47468b5bbdb63d31fed45 100644 (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++;