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

Commit f53f4159 authored by Stephen Warren's avatar Stephen Warren Committed by Kevin Hilman
Browse files

ARM: tegra: fix tegra_powergate_sequence_power_up() inline



Remove an invalid semicolon from the inline dummy, thus solving:
In file included from drivers/gpu/drm/tegra/gr3d.c:15:0:
include/linux/tegra-powergate.h:119:1: error: expected identifier or '(' before '{' token

Fixes: 80b28791 ("ARM: tegra: pass reset to tegra_powergate_sequence_power_up()")
Reported-by: default avatarRussell King <linux@arm.linux.org.uk>
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Reviewed-by: default avatarThierry Reding <treding@nvidia.com>
Signed-off-by: default avatarKevin Hilman <khilman@linaro.org>
parent 5494bd2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ static inline int tegra_powergate_remove_clamping(int id)
}

static inline int tegra_powergate_sequence_power_up(int id, struct clk *clk,
						    struct reset_control *rst);
						    struct reset_control *rst)
{
	return -ENOSYS;
}