PCI: designware: Fix indent code style
authorJingoo Han <jg1.han@samsung.com>
Fri, 27 Dec 2013 00:30:25 +0000 (09:30 +0900)
committerBjorn Helgaas <bhelgaas@google.com>
Thu, 2 Jan 2014 21:47:22 +0000 (14:47 -0700)
Fix indent code style and replace 'MSI interrupt controller' of comment
with 'MSI controller' to fix the following checkpatch issues:

  ERROR: code indent should use tabs where possible
  WARNING: please, no spaces at the start of a line
  WARNING: line over 80 characters

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/host/pcie-designware.c

index 4a08d30548ce68adc04fe0ad8061945dc59798ec..17ce88f79d2b1ed3bbd351726f9d0af68be7d9ba 100644 (file)
@@ -213,14 +213,14 @@ static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
 }
 
 static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
-                            unsigned int nvec, unsigned int pos)
+                           unsigned int nvec, unsigned int pos)
 {
        unsigned int i, res, bit, val;
 
        for (i = 0; i < nvec; i++) {
                irq_set_msi_desc_off(irq_base, i, NULL);
                clear_bit(pos + i, pp->msi_irq_in_use);
-               /* Disable corresponding interrupt on MSI interrupt controller */
+               /* Disable corresponding interrupt on MSI controller */
                res = ((pos + i) / 32) * 12;
                bit = (pos + i) % 32;
                dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);