[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1272634478-4127-3-git-send-email-wfp5p@virginia.edu>
Date: Fri, 30 Apr 2010 09:34:29 -0400
From: Bill Pemberton <wfp5p@...ginia.edu>
To: trivial@...nel.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH 02/11] agp: use NULL instead of 0 when pointer is needed
Fixes sparse warning:
drivers/char/agp/generic.c:1217:33: warning: Using plain integer as
NULL pointer
Signed-off-by: Bill Pemberton <wfp5p@...ginia.edu>
CC: linux-kernel@...r.kernel.org
---
drivers/char/agp/generic.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/char/agp/generic.c b/drivers/char/agp/generic.c
index fb86708..4b51982 100644
--- a/drivers/char/agp/generic.c
+++ b/drivers/char/agp/generic.c
@@ -1214,7 +1214,7 @@ struct agp_memory *agp_generic_alloc_user(size_t page_count, int type)
return NULL;
for (i = 0; i < page_count; i++)
- new->pages[i] = 0;
+ new->pages[i] = NULL;
new->page_count = 0;
new->type = type;
new->num_scratch_pages = pages;
--
1.7.0.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists