From: Geert Uytterhoeven Date: Fri, 1 Mar 2024 21:02:33 +0000 (+0100) Subject: sh: dwarf: Make dwarf_lookup_fde() static X-Git-Tag: v6.10-rc1~181^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=106398fdd3bdf9e38b48fbccb665af92486bd474;p=thirdparty%2Fkernel%2Flinux.git sh: dwarf: Make dwarf_lookup_fde() static arch/sh/kernel/dwarf.c:347:19: warning: no previous prototype for 'dwarf_lookup_fde' [-Wmissing-prototypes] There are no users outside this file, so make it static. Signed-off-by: Geert Uytterhoeven Reviewed-by: John Paul Adrian Glaubitz Link: https://lore.kernel.org/r/55e8261a354e8ec4d375754e404c6c1d303af715.1709326528.git.geert+renesas@glider.be Signed-off-by: John Paul Adrian Glaubitz --- diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index bf8682e718303..45c8ae20d1095 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c @@ -344,7 +344,7 @@ out: * dwarf_lookup_fde - locate the FDE that covers pc * @pc: the program counter */ -struct dwarf_fde *dwarf_lookup_fde(unsigned long pc) +static struct dwarf_fde *dwarf_lookup_fde(unsigned long pc) { struct rb_node **rb_node = &fde_root.rb_node; struct dwarf_fde *fde = NULL;