Dimitry Andric 402dbdd98a 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
2022-08-15 20:48:33 +02:00
..
2022-08-11 21:35:32 +00:00
2022-08-14 01:14:21 +02:00
2022-07-24 16:53:35 -06:00
2022-08-15 16:35:36 +00:00
2022-08-11 21:35:32 +00:00
2022-08-14 01:14:21 +02:00
2022-08-15 06:46:30 +00:00
2022-08-11 09:19:37 -07:00
2022-08-02 21:11:09 +03:00
2022-08-12 16:53:04 -07:00
2022-08-13 15:28:09 -07:00