Skip to content

Commit

Permalink
PCI/MSI: Remove unnecessary braces around single statements
Browse files Browse the repository at this point in the history
Per Documentation/CodingStyle, don't use braces around single statements.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: Yingjoe Chen <yingjoe.chen@mediatek.com>
Cc: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Jiang Liu authored and Thomas Gleixner committed Nov 23, 2014
1 parent 6cf00af commit 3f3ceca
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions drivers/pci/msi.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,8 @@ void default_restore_msi_irqs(struct pci_dev *dev)
{
struct msi_desc *entry;

list_for_each_entry(entry, &dev->msi_list, list) {
list_for_each_entry(entry, &dev->msi_list, list)
default_restore_msi_irq(dev, entry->irq);
}
}

void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
Expand Down Expand Up @@ -461,9 +460,8 @@ static void __pci_restore_msix_state(struct pci_dev *dev)
PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);

arch_restore_msi_irqs(dev);
list_for_each_entry(entry, &dev->msi_list, list) {
list_for_each_entry(entry, &dev->msi_list, list)
msix_mask_irq(entry, entry->masked);
}

msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0);
}
Expand Down Expand Up @@ -507,9 +505,8 @@ static int populate_msi_sysfs(struct pci_dev *pdev)
int count = 0;

/* Determine how many msi entries we have */
list_for_each_entry(entry, &pdev->msi_list, list) {
list_for_each_entry(entry, &pdev->msi_list, list)
++num_msi;
}
if (!num_msi)
return 0;

Expand Down

0 comments on commit 3f3ceca

Please sign in to comment.