diff mbox series

[v2] sh: pci: Remove unused variable in SH-7786 PCI Express code

Message ID 20230419070934.422997-1-glaubitz@physik.fu-berlin.de (mailing list archive)
State New, archived
Headers show
Series [v2] sh: pci: Remove unused variable in SH-7786 PCI Express code | expand

Commit Message

John Paul Adrian Glaubitz April 19, 2023, 7:09 a.m. UTC
Addresses the following warning when building sdk7786_defconfig:

arch/sh/drivers/pci/pcie-sh7786.c:34:22: warning: 'dma_pfn_offset' defined but not used [-Wunused-variable]
   34 | static unsigned long dma_pfn_offset;
      |                      ^~~~~~~~~~~~~~

Fixes: e0d072782c73 ("dma-mapping: introduce DMA range map, supplanting dma_pfn_offset")
Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
---
v2:
- Fix formatting in commit message

 arch/sh/drivers/pci/pcie-sh7786.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Geert Uytterhoeven April 19, 2023, 7:30 a.m. UTC | #1
On Wed, Apr 19, 2023 at 9:14 AM John Paul Adrian Glaubitz
<glaubitz@physik.fu-berlin.de> wrote:
> Addresses the following warning when building sdk7786_defconfig:
>
> arch/sh/drivers/pci/pcie-sh7786.c:34:22: warning: 'dma_pfn_offset' defined but not used [-Wunused-variable]
>    34 | static unsigned long dma_pfn_offset;
>       |                      ^~~~~~~~~~~~~~
>
> Fixes: e0d072782c73 ("dma-mapping: introduce DMA range map, supplanting dma_pfn_offset")
> Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
> ---
> v2:
> - Fix formatting in commit message

My
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
on v1 is still valid.

Gr{oetje,eeting}s,

                        Geert
John Paul Adrian Glaubitz April 19, 2023, 9:22 a.m. UTC | #2
On Wed, 2023-04-19 at 09:30 +0200, Geert Uytterhoeven wrote:
> On Wed, Apr 19, 2023 at 9:14 AM John Paul Adrian Glaubitz
> <glaubitz@physik.fu-berlin.de> wrote:
> > Addresses the following warning when building sdk7786_defconfig:
> > 
> > arch/sh/drivers/pci/pcie-sh7786.c:34:22: warning: 'dma_pfn_offset' defined but not used [-Wunused-variable]
> >    34 | static unsigned long dma_pfn_offset;
> >       |                      ^~~~~~~~~~~~~~
> > 
> > Fixes: e0d072782c73 ("dma-mapping: introduce DMA range map, supplanting dma_pfn_offset")
> > Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
> > ---
> > v2:
> > - Fix formatting in commit message
> 
> My
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> on v1 is still valid.

Thanks, pushed to my for-next branch:

> https://git.kernel.org/pub/scm/linux/kernel/git/glaubitz/sh-linux.git/?h=for-next

Adrian
diff mbox series

Patch

diff --git a/arch/sh/drivers/pci/pcie-sh7786.c b/arch/sh/drivers/pci/pcie-sh7786.c
index b0c2a5238d04..39bb5038e1c6 100644
--- a/arch/sh/drivers/pci/pcie-sh7786.c
+++ b/arch/sh/drivers/pci/pcie-sh7786.c
@@ -31,7 +31,6 @@  struct sh7786_pcie_port {
 
 static struct sh7786_pcie_port *sh7786_pcie_ports;
 static unsigned int nr_ports;
-static unsigned long dma_pfn_offset;
 size_t memsize;
 u64 memstart;