K 10 svn:author V 3 dim K 8 svn:date V 27 2022-08-21T11:31:10.250240Z K 7 svn:log V 698 Adjust function definition in arm's mv_common.c to avoid clang 15 warning With clang 15, the following -Werror warning is produced: sys/arm/mv/mv_common.c:414:20: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] mv_check_soc_family() ^ void This is because mv_check_soc_family() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 days (cherry picked from commit 402dbdd98acc7fa94d1d4cd01903e987d2409336) Git Hash: a1d2106afbf6128420a43e5756a240f466f92b5e Git Author: dim@FreeBSD.org END