Hi folks,

since my compiler always complains about that during (aborted) compilation of the kernel modules I decided to send that patch to the ML.
Can we safely replace TRUE/FALSE by the boolean values true/false?

Cheers, Johannes
Signed-off-by: Johannes Engel <[EMAIL PROTECTED]>

Replace old TRUE/FALSE by true boolean true/false

 linux-core/drm_agpsupport.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/linux-core/drm_agpsupport.c b/linux-core/drm_agpsupport.c
index d6594b8..3cc94ff 100644
--- a/linux-core/drm_agpsupport.c
+++ b/linux-core/drm_agpsupport.c
@@ -517,7 +517,7 @@ drm_agp_bind_pages(struct drm_device *dev,
 		mem->memory[i] = phys_to_gart(page_to_phys(pages[i]));
 	mem->page_count = num_pages;
 
-	mem->is_flushed = TRUE;
+	mem->is_flushed = true;
 	ret = drm_agp_bind_memory(mem, gtt_offset / PAGE_SIZE);
 	if (ret != 0) {
 		DRM_ERROR("Failed to bind AGP memory: %d\n", ret);
@@ -597,7 +597,7 @@ static int drm_agp_bind_ttm(struct drm_ttm_backend *backend,
 	int snooped = (bo_mem->flags & DRM_BO_FLAG_CACHED) && !(bo_mem->flags & DRM_BO_FLAG_CACHED_MAPPED);
 
 	DRM_DEBUG("drm_agp_bind_ttm\n");
-	mem->is_flushed = TRUE;
+	mem->is_flushed = true;
 	mem->type = AGP_USER_MEMORY;
 	/* CACHED MAPPED implies not snooped memory */
 	if (snooped)
@@ -696,7 +696,7 @@ struct drm_ttm_backend *drm_agp_init_ttm(struct drm_device *dev)
 	agp_be->mem = NULL;
 
 	agp_be->bridge = dev->agp->bridge;
-	agp_be->populated = FALSE;
+	agp_be->populated = false;
 	agp_be->backend.func = &agp_ttm_backend;
 	agp_be->backend.dev = dev;
 
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to