opnsense-src/sys/cddl/dev
Dimitry Andric ff90edf507 Adjust fbt_unload() definition to avoid clang 15 warning
With clang 15, the following -Werror warning is produced:

    sys/cddl/dev/fbt/fbt.c:1273:11: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
    fbt_unload()
              ^
               void

This is because fbt_unload() 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 6339314c73)
2022-07-24 13:00:08 +02:00
..
dtmalloc Adjust dtmalloc_unload() definition to avoid clang 15 warning 2022-07-23 10:56:43 +02:00
dtrace Adjust dtrace_unload() definition to avoid clang 15 warning 2022-07-23 10:56:42 +02:00
fbt Adjust fbt_unload() definition to avoid clang 15 warning 2022-07-24 13:00:08 +02:00
profile Adjust profile_unload() definition to avoid clang 15 warning 2022-07-23 10:56:44 +02:00
sdt sdt: Create providers and probes in separate passes when loading sdt.ko 2020-12-03 17:10:00 +00:00
systrace kern: drop remaining references to removed makesyscalls.sh 2021-09-14 20:53:03 -05:00
prototype.c Adjust prototype_unload() definition to avoid clang 15 warning 2022-07-23 10:56:45 +02:00