Andrew Turner ec666d187d Adjust function definition in ofw to avoid clang 15 warning
With clang 15, the following -Werror warning is produced:

    sys/dev/ofw/openfirm.c:826:9: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
    OF_enter()
            ^
             void

This is because OF_enter() and OF_exit are declared with a (void)
argument list, but defined with an empty argument list. Make the
definition match the declaration.

Sponsored by:	The FreeBSD Foundation
2022-08-11 14:30:32 +01:00
..
2022-07-25 11:43:56 -04:00
2022-05-10 10:21:39 -07:00
2022-06-23 15:15:10 -03:00
2022-07-06 17:06:21 +02:00
2022-05-23 16:23:49 -07:00
2022-07-01 08:12:08 +02:00
2022-06-21 20:22:25 -07:00
2022-07-12 18:17:03 -07:00
2022-05-06 15:39:28 -07:00
2022-08-10 22:07:24 +02:00
2022-08-07 22:46:55 +00:00