diff options
author | Dan Carpenter <[email protected]> | 2010-04-27 14:11:05 -0700 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-04-28 18:41:51 +1000 |
commit | 404b017d00a9f472bdf725a06892d42f1cba5ed8 (patch) | |
tree | 51cfdc4dabfe79bab020604ff2813b5714c009e2 | |
parent | 22fb573affe51845622c4763653f60e130f80586 (diff) |
drivers/gpu/drm/drm_memory.c: fix check for end of loop
"agpmem" is never NULL here.
Signed-off-by: Dan Carpenter <[email protected]>
Cc: Eric Anholt <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | drivers/gpu/drm/drm_memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_memory.c b/drivers/gpu/drm/drm_memory.c index e4865f99989c..7732268eced2 100644 --- a/drivers/gpu/drm/drm_memory.c +++ b/drivers/gpu/drm/drm_memory.c @@ -77,7 +77,7 @@ static void *agp_remap(unsigned long offset, unsigned long size, && (agpmem->bound + (agpmem->pages << PAGE_SHIFT)) >= (offset + size)) break; - if (!agpmem) + if (&agpmem->head == &dev->agp->memory) return NULL; /* |