]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
MFC r311933:
authordim <dim@FreeBSD.org>
Wed, 25 Jan 2017 18:31:51 +0000 (18:31 +0000)
committerdim <dim@FreeBSD.org>
Wed, 25 Jan 2017 18:31:51 +0000 (18:31 +0000)
commit23feada9c8f688a0692877c7627f83574215dc03
treeb5f5636cc4edfaef9512c460fc811a91b9d3d557
parent5268d4e9288fb652e17b8122e1c8216e84b8ac9a
MFC r311933:

Use proper prototypes in struct boot_module_t

With clang 4.0.0, we are getting the following warnings about struct
boot_module_t in efi's boot_module.h:

In file included from sys/boot/efi/boot1/ufs_module.c:41:
sys/boot/efi/boot1/boot_module.h:67:14: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes]
        void (*init)();
                    ^
                     void
sys/boot/efi/boot1/boot_module.h:92:16: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes]
        void (*status)();
                      ^
                       void
sys/boot/efi/boot1/boot_module.h:95:24: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes]
        dev_info_t *(*devices)();
                              ^
                               void
3 errors generated.

Fix this by adding 'void' to the parameter lists.  No functional change.

Reviewed by: emaste, imp, smh
Differential Revision: https://reviews.freebsd.org/D9144
sys/boot/efi/boot1/boot_module.h