diff options
author | Anders Roxell <anders.roxell@linaro.org> | 2020-11-26 16:06:00 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2020-12-15 07:41:11 +0300 |
commit | 39b1e779b6e2d4ca7967b49b26f1e4358f20c90c (patch) | |
tree | 1a5a578f690491570f7d36d649e8d5dfc4fd488b /arch/parisc/kernel | |
parent | 6ca753a3a72e4c848d91f10da270c58000ada53c (diff) | |
download | linux-39b1e779b6e2d4ca7967b49b26f1e4358f20c90c.tar.xz |
parisc: pci-dma: fix warning unused-function
When building tinyconfig on parisc the following warnign shows up:
/tmp/arch/parisc/kernel/pci-dma.c:338:12: warning: 'proc_pcxl_dma_show' defined but not used [-Wunused-function]
static int proc_pcxl_dma_show(struct seq_file *m, void *v)
^~~~~~~~~~~~~~~~~~
Mark the function as __maybe_unused to fix the warning.
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/kernel')
-rw-r--r-- | arch/parisc/kernel/pci-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/pci-dma.c b/arch/parisc/kernel/pci-dma.c index 36610a5c029f..36a57aa38e87 100644 --- a/arch/parisc/kernel/pci-dma.c +++ b/arch/parisc/kernel/pci-dma.c @@ -335,7 +335,7 @@ pcxl_free_range(unsigned long vaddr, size_t size) dump_resmap(); } -static int proc_pcxl_dma_show(struct seq_file *m, void *v) +static int __maybe_unused proc_pcxl_dma_show(struct seq_file *m, void *v) { #if 0 u_long i = 0; |