Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41055
b: refs/heads/master
c: 66c669b
h: refs/heads/master
i:
  41053: a6bd123
  41051: c41f250
  41047: 96d6f73
  41039: 1fcea4b
  41023: 903f660
v: v3
  • Loading branch information
Linus Torvalds committed Nov 22, 2006
1 parent 7dfc645 commit 1db7e0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7d915a38985d2826acbdc9dc9cca8a93e23e5278
refs/heads/master: 66c669baa7d70b8d135da67f36c8dba12cea71b8
2 changes: 1 addition & 1 deletion trunk/drivers/char/agp/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ void *agp_generic_alloc_page(struct agp_bridge_data *bridge)
{
struct page * page;

page = alloc_page(GFP_KERNEL);
page = alloc_page(GFP_KERNEL | GFP_DMA32);
if (page == NULL)
return NULL;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/agp/intel-agp.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ static void *i8xx_alloc_pages(void)
{
struct page * page;

page = alloc_pages(GFP_KERNEL, 2);
page = alloc_pages(GFP_KERNEL | GFP_DMA32, 2);
if (page == NULL)
return NULL;

Expand Down

0 comments on commit 1db7e0d

Please sign in to comment.