audio-kernel: Add void param in function definition

Add void param in function definition to
avoid compilation errors when strict prototypes
flag is defined.

Change-Id: I4515c730139fff18638805cd70db24ec1886f127
This commit is contained in:
Aditya Bavanari
2020-04-27 13:02:03 +05:30
committed by Gerrit - the friendly Code Review server
parent 700bd78ede
commit 6bacce4b9c

View File

@@ -87,13 +87,13 @@ void digital_cdc_rsc_mgr_hw_vote_reset(struct clk* vote_handle)
} }
EXPORT_SYMBOL(digital_cdc_rsc_mgr_hw_vote_reset); EXPORT_SYMBOL(digital_cdc_rsc_mgr_hw_vote_reset);
void digital_cdc_rsc_mgr_init() void digital_cdc_rsc_mgr_init(void)
{ {
mutex_init(&hw_vote_lock); mutex_init(&hw_vote_lock);
is_init_done = true; is_init_done = true;
} }
void digital_cdc_rsc_mgr_exit() void digital_cdc_rsc_mgr_exit(void)
{ {
mutex_destroy(&hw_vote_lock); mutex_destroy(&hw_vote_lock);
is_init_done = false; is_init_done = false;