]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
parisc: PDT: Fix missing prototype warning
authorYu-Chun Lin <eleanor15x@gmail.com>
Sat, 8 Feb 2025 17:43:04 +0000 (01:43 +0800)
committerHelge Deller <deller@gmx.de>
Fri, 28 Feb 2025 07:04:22 +0000 (08:04 +0100)
As reported by the kernel test robot, the following error occurs:

arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes]
      65 | void arch_report_meminfo(struct seq_file *m)
         |      ^~~~~~~~~~~~~~~~~~~

arch_report_meminfo() is declared in include/linux/proc_fs.h and only
defined when CONFIG_PROC_FS is enabled. Wrap its definition in #ifdef
CONFIG_PROC_FS to fix the -Wmissing-prototypes warning.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202502082315.IPaHaTyM-lkp@intel.com/
Signed-off-by: Yu-Chun Lin <eleanor15x@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/kernel/pdt.c

index 0f9b3b5914cf6994862568f80cc348baed60882a..b70b67adb855f672ea9a7865458d58a2bb9ac674 100644 (file)
@@ -63,6 +63,7 @@ static unsigned long pdt_entry[MAX_PDT_ENTRIES] __page_aligned_bss;
 #define PDT_ADDR_PERM_ERR      (pdt_type != PDT_PDC ? 2UL : 0UL)
 #define PDT_ADDR_SINGLE_ERR    1UL
 
+#ifdef CONFIG_PROC_FS
 /* report PDT entries via /proc/meminfo */
 void arch_report_meminfo(struct seq_file *m)
 {
@@ -74,6 +75,7 @@ void arch_report_meminfo(struct seq_file *m)
        seq_printf(m, "PDT_cur_entries: %7lu\n",
                        pdt_status.pdt_entries);
 }
+#endif
 
 static int get_info_pat_new(void)
 {