K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T18:50:23.654995Z K 7 svn:log V 755 Adjust function definition in subr_autoconf.c to avoid clang 15 warnings With clang 15, the following -Werror warning is produced: sys/kern/subr_autoconf.c:119:34: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] run_interrupt_driven_config_hooks() ^ void This is because run_interrupt_driven_config_hooks() 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 3c8f0790dd038ce646f140b7aad23b4e698c0522) Git Hash: 656fcede6c7121a5dba850d99ad54102364d76f3 Git Author: dim@FreeBSD.org END