aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/pci/hotplug
diff options
context:
space:
mode:
authorKrzysztof Wilczyński <kw@linux.com>2021-10-13 01:14:12 +0000
committerBjorn Helgaas <bhelgaas@google.com>2021-10-12 20:48:44 -0500
commite98754233c58bfe7cad67ed4b7f3980d7e0d731d (patch)
tree1ef4658b937e983a76693becbf34c66aa2c03c4c /drivers/pci/hotplug
parentPCI: Use unsigned to match sscanf("%x") in pci_dev_str_match_path() (diff)
downloadwireguard-linux-e98754233c58bfe7cad67ed4b7f3980d7e0d731d.tar.xz
wireguard-linux-e98754233c58bfe7cad67ed4b7f3980d7e0d731d.zip
PCI: cpqphp: Format if-statement code block correctly
The code block related to the if-statement in cpqhp_set_irq() is somewhat awkwardly formatted making the code hard to read. Make it readable. No change to functionality intended. Link: https://lore.kernel.org/r/20211013011412.1110829-1-kw@linux.com Signed-off-by: Krzysztof Wilczyński <kw@linux.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug')
-rw-r--r--drivers/pci/hotplug/cpqphp_pci.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/pci/hotplug/cpqphp_pci.c b/drivers/pci/hotplug/cpqphp_pci.c
index 1b2b3f3b648b..9038039ad6db 100644
--- a/drivers/pci/hotplug/cpqphp_pci.c
+++ b/drivers/pci/hotplug/cpqphp_pci.c
@@ -189,8 +189,10 @@ int cpqhp_set_irq(u8 bus_num, u8 dev_num, u8 int_pin, u8 irq_num)
/* This should only be for x86 as it sets the Edge Level
* Control Register
*/
- outb((u8) (temp_word & 0xFF), 0x4d0); outb((u8) ((temp_word &
- 0xFF00) >> 8), 0x4d1); rc = 0; }
+ outb((u8)(temp_word & 0xFF), 0x4d0);
+ outb((u8)((temp_word & 0xFF00) >> 8), 0x4d1);
+ rc = 0;
+ }
return rc;
}