Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: xgene: Remove return from void function

This function doesn't return anything because it's void. Drop the
return statement.

Cc: Loc Ho <lho@apm.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

+1 -1
+1 -1
drivers/clk/clk-xgene.c
··· 50 50 51 51 static inline void xgene_clk_write(u32 data, void __iomem *csr) 52 52 { 53 - return writel_relaxed(data, csr); 53 + writel_relaxed(data, csr); 54 54 } 55 55 56 56 /* PLL Clock */