* [PATCH] PCI: imx6: Use tabs for indentation
@ 2014-11-12 3:25 Jingoo Han
2014-11-12 16:30 ` Srikanth Thokala
2014-11-13 17:50 ` Bjorn Helgaas
0 siblings, 2 replies; 3+ messages in thread
From: Jingoo Han @ 2014-11-12 3:25 UTC (permalink / raw)
To: 'Bjorn Helgaas'
Cc: linux-pci, 'Jingoo Han', 'Richard Zhu',
'Lucas Stach'
This patch fixes the following checkpatch error.
ERROR: code indent should use tabs where possible
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
---
drivers/pci/host/pci-imx6.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c
index 233fe8a..8a7530b 100644
--- a/drivers/pci/host/pci-imx6.c
+++ b/drivers/pci/host/pci-imx6.c
@@ -526,8 +526,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;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] PCI: imx6: Use tabs for indentation
2014-11-12 3:25 [PATCH] PCI: imx6: Use tabs for indentation Jingoo Han
@ 2014-11-12 16:30 ` Srikanth Thokala
2014-11-13 17:50 ` Bjorn Helgaas
1 sibling, 0 replies; 3+ messages in thread
From: Srikanth Thokala @ 2014-11-12 16:30 UTC (permalink / raw)
To: Jingoo Han
Cc: Bjorn Helgaas, linux-pci@vger.kernel.org, Richard Zhu,
Lucas Stach
On Wed, Nov 12, 2014 at 8:55 AM, Jingoo Han <jg1.han@samsung.com> wrote:
> This patch fixes the following checkpatch error.
>
> ERROR: code indent should use tabs where possible
>
> Signed-off-by: Jingoo Han <jg1.han@samsung.com>
> ---
> drivers/pci/host/pci-imx6.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Acked-by: Srikanth Thokala <sriku.linux@gmail.com>
- Srikanth
>
> diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c
> index 233fe8a..8a7530b 100644
> --- a/drivers/pci/host/pci-imx6.c
> +++ b/drivers/pci/host/pci-imx6.c
> @@ -526,8 +526,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;
> --
> 1.7.9.5
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] PCI: imx6: Use tabs for indentation
2014-11-12 3:25 [PATCH] PCI: imx6: Use tabs for indentation Jingoo Han
2014-11-12 16:30 ` Srikanth Thokala
@ 2014-11-13 17:50 ` Bjorn Helgaas
1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2014-11-13 17:50 UTC (permalink / raw)
To: Jingoo Han; +Cc: linux-pci, 'Richard Zhu', 'Lucas Stach'
On Wed, Nov 12, 2014 at 12:25:09PM +0900, Jingoo Han wrote:
> This patch fixes the following checkpatch error.
>
> ERROR: code indent should use tabs where possible
>
> Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Applied to pci/host-imx6 for v3.19, thanks!
Richard and Lucas, let me know if you have any objection.
> ---
> drivers/pci/host/pci-imx6.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c
> index 233fe8a..8a7530b 100644
> --- a/drivers/pci/host/pci-imx6.c
> +++ b/drivers/pci/host/pci-imx6.c
> @@ -526,8 +526,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;
> --
> 1.7.9.5
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-11-13 17:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-12 3:25 [PATCH] PCI: imx6: Use tabs for indentation Jingoo Han
2014-11-12 16:30 ` Srikanth Thokala
2014-11-13 17:50 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).