Re: [PATCH v2 2/4] powerpc/perf: make isa207_pmu_format_group struct static

2025-05-18 Thread kernel test robot
kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next patch link: https://lore.kernel.org/r/20250518044107.39928-2-maddy%40linux.ibm.com patch subject: [PATCH v2 2/4] powerpc/perf: make isa207_pmu_format_group struct static config: powerpc64-randconfig-002-20250518 (https://download.01.o

[PATCH v2 2/4] powerpc/perf: make isa207_pmu_format_group struct static

2025-05-17 Thread Madhavan Srinivasan
isa207_pmu_format_group struct is local to the source and does not need to be in global scope, so make it static Cleans up sparse warning: arch/powerpc/perf/isa207-common.c:40:30: warning: symbol 'isa207_pmu_format_group' was not declared. Should it be static? Tested-by: Venkat Rao Bagalkote Si