Fix for debug memory routines

This commit is contained in:
Alan Hourihane 2008-01-17 13:04:42 +00:00 committed by Thomas Hellstrom
parent 3262577407
commit 88be276a42

View file

@ -326,7 +326,12 @@ static void *agp_remap(unsigned long offset, unsigned long size,
return NULL;
}
#endif /* agp */
#else
static void *agp_remap(unsigned long offset, unsigned long size,
struct drm_device * dev)
{
return NULL;
}
#endif /* debug_memory */
void drm_core_ioremap(struct drm_map *map, struct drm_device *dev)