mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
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: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
8282049039
commit
3fca806cf3
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user