treewide: Update clock control API usage

Replace all (clock_control_subsys_t *) casts with (clock_control_subsys_t)

Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
This commit is contained in:
Pieter De Gendt 2023-03-28 08:24:07 +02:00 committed by Carles Cufí
commit 6b532ff43e
88 changed files with 160 additions and 160 deletions

View file

@ -522,7 +522,7 @@ static int xec_ecia_init(const struct device *dev)
}
ret = clock_control_on(clk_dev,
(clock_control_subsys_t *)&cfg->clk_ctrl);
(clock_control_subsys_t)&cfg->clk_ctrl);
if (ret < 0) {
return ret;
}