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

Commit f9285b54 authored by Stephen Boyd's avatar Stephen Boyd
Browse files

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: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 47727beb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ static inline u32 xgene_clk_read(void __iomem *csr)

static inline void xgene_clk_write(u32 data, void __iomem *csr)
{
	return writel_relaxed(data, csr);
	writel_relaxed(data, csr);
}

/* PLL Clock */