Skip to content

Commit

Permalink
agp: use NULL instead of 0 when pointer is needed
Browse files Browse the repository at this point in the history
Fixes sparse warning:

drivers/char/agp/generic.c:1217:33: warning: Using plain integer as
NULL pointer

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
CC: linux-kernel@vger.kernel.org
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Bill Pemberton authored and Jiri Kosina committed May 11, 2010
1 parent 758ef74 commit 83897ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/agp/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 83897ba

Please sign in to comment.