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

Commit 3fca806c authored by Dan Carpenter's avatar Dan Carpenter Committed by Keith Packard
Browse files

drm/i915: fix if statement (bogus semi-colon)



The semi-colon is a typo here and it makes the if statement
unconditional.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarKeith Packard <keithp@keithp.com>
parent 82820490
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1236,7 +1236,7 @@ static int i9xx_setup(void)
		intel_private.gtt_bus_addr = reg_addr + gtt_offset;
		intel_private.gtt_bus_addr = reg_addr + gtt_offset;
	}
	}


	if (needs_idle_maps());
	if (needs_idle_maps())
		intel_private.base.do_idle_maps = 1;
		intel_private.base.do_idle_maps = 1;


	intel_i9xx_setup_flush();
	intel_i9xx_setup_flush();