K 10 svn:author V 3 dim K 8 svn:date V 27 2022-08-21T11:31:22.330772Z K 7 svn:log V 950 Adjust function definitions in mp_cpudep.c.c to avoid clang 15 warnings With clang 15, the following -Werror warnings are produced: sys/powerpc/booke/mp_cpudep.c:54:20: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] cpudep_ap_bootstrap() ^ void sys/powerpc/booke/mp_cpudep.c:97:16: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] cpudep_ap_setup() ^ void This is because cpudep_ap_bootstrap() and cpudep_ap_setup() are declared with (void) argument lists, but defined with empty argument lists. Make the definitions match the declarations. MFC after: 3 days (cherry picked from commit 02dd51c9bccedc2fc8d98c3892986232f6bacdab) Git Hash: 2ee07943312fc542a513c2825ecd34f6ef0f3b2d Git Author: dim@FreeBSD.org END