Commit 4c207db8 authored by Andreas Larsson's avatar Andreas Larsson

sparc64: Fix prototype warnings for floppy_64.h

Fix the following warnings:

arch/sparc/include/asm/floppy_64.h:200:13: warning: no previous prototype for ‘sparc_floppy_irq’
arch/sparc/include/asm/floppy_64.h:437:6: warning: no previous prototype for ‘sun_pci_fd_dma_callback’

Both sparc_floppy_irq and sun_pci_fd_dma_callback are only used within
arch/sparc/include/asm/floppy_64.h that is included only by
drivers/block/floppy.c, so declare them static.

Link: https://lore.kernel.org/r/20240710094155.458731-2-andreas@gaisler.comSigned-off-by: default avatarAndreas Larsson <andreas@gaisler.com>
parent a7ec177e
...@@ -197,7 +197,7 @@ static void sun_fd_enable_dma(void) ...@@ -197,7 +197,7 @@ static void sun_fd_enable_dma(void)
pdma_areasize = pdma_size; pdma_areasize = pdma_size;
} }
irqreturn_t sparc_floppy_irq(int irq, void *dev_cookie) static irqreturn_t sparc_floppy_irq(int irq, void *dev_cookie)
{ {
if (likely(doing_pdma)) { if (likely(doing_pdma)) {
void __iomem *stat = (void __iomem *) fdc_status; void __iomem *stat = (void __iomem *) fdc_status;
...@@ -434,7 +434,8 @@ static int sun_pci_fd_eject(int drive) ...@@ -434,7 +434,8 @@ static int sun_pci_fd_eject(int drive)
return -EINVAL; return -EINVAL;
} }
void sun_pci_fd_dma_callback(struct ebus_dma_info *p, int event, void *cookie) static void sun_pci_fd_dma_callback(struct ebus_dma_info *p, int event,
void *cookie)
{ {
floppy_interrupt(0, NULL); floppy_interrupt(0, NULL);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment