Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fba3acd9 authored by Russell King's avatar Russell King
Browse files

clkdev: drop __init from clkdev_add_table()



We want to be able to call clkdev_add_table() from non-init code, so we
need to drop the __init marker from it.

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent d2d14a77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -230,7 +230,7 @@ void clkdev_add(struct clk_lookup *cl)
}
EXPORT_SYMBOL(clkdev_add);

void __init clkdev_add_table(struct clk_lookup *cl, size_t num)
void clkdev_add_table(struct clk_lookup *cl, size_t num)
{
	mutex_lock(&clocks_mutex);
	while (num--) {