diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-11-12 12:25:09 +0900 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2016-02-09 22:56:22 -0500 |
commit | f190994a35f61b4a538ee97991262eed09333493 (patch) | |
tree | a75a756850cf2abdfebe19387044c7c24b962d5b | |
parent | 99b533235bc1b3d4ffda9fc91acec2e9b6f8e671 (diff) | |
download | lwn-f190994a35f61b4a538ee97991262eed09333493.tar.gz lwn-f190994a35f61b4a538ee97991262eed09333493.zip |
PCI: imx6: Use tabs for indentation
[ Upstream commit d88a7ef99e4c15985e0d726d4a4e4c1f0e4f0ad5 ]
This patch fixes the following checkpatch error:
ERROR: code indent should use tabs where possible
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
-rw-r--r-- | drivers/pci/host/pci-imx6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c index 69202d1eb8fb..d1a26d17b586 100644 --- a/drivers/pci/host/pci-imx6.c +++ b/drivers/pci/host/pci-imx6.c @@ -533,8 +533,8 @@ static int __init imx6_add_pcie_port(struct pcie_port *pp, } ret = devm_request_irq(&pdev->dev, pp->msi_irq, - imx6_pcie_msi_handler, - IRQF_SHARED, "mx6-pcie-msi", pp); + imx6_pcie_msi_handler, + IRQF_SHARED, "mx6-pcie-msi", pp); if (ret) { dev_err(&pdev->dev, "failed to request MSI irq\n"); return -ENODEV; |