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

Commit d4da3af6 authored by Hannes Eder's avatar Hannes Eder Committed by Dave Airlie
Browse files

drm/i915: fix sparse warnings: returning void-valued expression



Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 606df4e0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -213,9 +213,9 @@ static void intel_clock(struct drm_device *dev, int refclk,
			intel_clock_t *clock)
{
	if (IS_I9XX(dev))
		return i9xx_clock (refclk, clock);
		i9xx_clock (refclk, clock);
	else
		return i8xx_clock (refclk, clock);
		i8xx_clock (refclk, clock);
}

/**