mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 18:55:08 +07:00
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:
parent
732bf98833
commit
65b96899ce
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user