diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2011-10-28 07:42:41 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-11-08 05:50:18 -0500 |
commit | 35b09c9bf619c4fc6040c52dcea6bd5bd6af7679 (patch) | |
tree | 27e9ec49a947d0a267c716a732eae58ac2b856ee /drivers/char/agp | |
parent | 1ea6b8f48918282bdca0b32a34095504ee65bab5 (diff) |
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>
Diffstat (limited to 'drivers/char/agp')
-rw-r--r-- | drivers/char/agp/intel-gtt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/intel-gtt.c b/drivers/char/agp/intel-gtt.c index 66cd0b8096ca..3a8d44886010 100644 --- a/drivers/char/agp/intel-gtt.c +++ b/drivers/char/agp/intel-gtt.c | |||
@@ -1236,7 +1236,7 @@ static int i9xx_setup(void) | |||
1236 | intel_private.gtt_bus_addr = reg_addr + gtt_offset; | 1236 | intel_private.gtt_bus_addr = reg_addr + gtt_offset; |
1237 | } | 1237 | } |
1238 | 1238 | ||
1239 | if (needs_idle_maps()); | 1239 | if (needs_idle_maps()) |
1240 | intel_private.base.do_idle_maps = 1; | 1240 | intel_private.base.do_idle_maps = 1; |
1241 | 1241 | ||
1242 | intel_i9xx_setup_flush(); | 1242 | intel_i9xx_setup_flush(); |