Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 65b96899 authored by Bryan Thompson's avatar Bryan Thompson Committed by Greg Kroah-Hartman
Browse files

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: default avatarBryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 732bf988
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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++;