diff mbox

powerpc/fsl-pci: fix warning when CONFIG_SWIOTLB is disabled

Message ID 1347962268-25136-1-git-send-email-B38951@freescale.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Hongtao Jia Sept. 18, 2012, 9:57 a.m. UTC
Fix the following warning:
arch/powerpc/sysdev/fsl_pci.c: In function 'fsl_pci_probe':
arch/powerpc/sysdev/fsl_pci.c:867:25: error: unused variable 'hose'

Signed-off-by: Jia Hongtao <B38951@freescale.com>
---
 arch/powerpc/sysdev/fsl_pci.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

Comments

Michael Neuling Sept. 18, 2012, 9:06 p.m. UTC | #1
Jia Hongtao <B38951@freescale.com> wrote:

> Fix the following warning:
> arch/powerpc/sysdev/fsl_pci.c: In function 'fsl_pci_probe':
> arch/powerpc/sysdev/fsl_pci.c:867:25: error: unused variable 'hose'
> 
> Signed-off-by: Jia Hongtao <B38951@freescale.com>

Acked-by: Michael Neuling <mikey@neuling.org>

> ---
>  arch/powerpc/sysdev/fsl_pci.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c
> index 2ff3576..3d6f4d8 100644
> --- a/arch/powerpc/sysdev/fsl_pci.c
> +++ b/arch/powerpc/sysdev/fsl_pci.c
> @@ -864,7 +864,9 @@ static int __devinit fsl_pci_probe(struct platform_device *pdev)
>  {
>  	int ret;
>  	struct device_node *node;
> +#ifdef CONFIG_SWIOTLB
>  	struct pci_controller *hose;
> +#endif
>  
>  	node = pdev->dev.of_node;
>  	ret = fsl_add_bridge(node, fsl_pci_primary == node);
> -- 
> 1.7.5.1
> 
>
Kumar Gala Sept. 19, 2012, 2:51 p.m. UTC | #2
On Sep 18, 2012, at 4:57 AM, Jia Hongtao wrote:

> Fix the following warning:
> arch/powerpc/sysdev/fsl_pci.c: In function 'fsl_pci_probe':
> arch/powerpc/sysdev/fsl_pci.c:867:25: error: unused variable 'hose'
> 
> Signed-off-by: Jia Hongtao <B38951@freescale.com>
> ---
> arch/powerpc/sysdev/fsl_pci.c |    2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)

applied to next

- k
diff mbox

Patch

diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c
index 2ff3576..3d6f4d8 100644
--- a/arch/powerpc/sysdev/fsl_pci.c
+++ b/arch/powerpc/sysdev/fsl_pci.c
@@ -864,7 +864,9 @@  static int __devinit fsl_pci_probe(struct platform_device *pdev)
 {
 	int ret;
 	struct device_node *node;
+#ifdef CONFIG_SWIOTLB
 	struct pci_controller *hose;
+#endif
 
 	node = pdev->dev.of_node;
 	ret = fsl_add_bridge(node, fsl_pci_primary == node);