diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2008-08-25 06:22:21 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-25 06:28:33 -0400 |
commit | c09ff7e1744047be1043cb32453ef90b7f6b8451 (patch) | |
tree | 1e1aeefd3e04a85ffb641b7d27ed57937777e497 /drivers | |
parent | 01de05af94db5d5214b0a5e191068d19c82059a8 (diff) |
linux-next: fix x86 tree build failure
Today's linux-next build (powerpc allyesconfig) failed like this:
drivers/char/agp/uninorth-agp.c:541: error: unknown field 'agp_destroy_paged' specified in initializer
Caused by commit 5f310b63781f6777bf4e812570560ec0f8ea42d8
("agp: enable optimized agp_alloc_pages methods"). A simple typo ...
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/agp/uninorth-agp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/uninorth-agp.c b/drivers/char/agp/uninorth-agp.c index 2accc9744707..0f004b65ec03 100644 --- a/drivers/char/agp/uninorth-agp.c +++ b/drivers/char/agp/uninorth-agp.c | |||
@@ -538,7 +538,7 @@ const struct agp_bridge_driver u3_agp_driver = { | |||
538 | .agp_alloc_page = agp_generic_alloc_page, | 538 | .agp_alloc_page = agp_generic_alloc_page, |
539 | .agp_alloc_pages = agp_generic_alloc_pages, | 539 | .agp_alloc_pages = agp_generic_alloc_pages, |
540 | .agp_destroy_page = agp_generic_destroy_page, | 540 | .agp_destroy_page = agp_generic_destroy_page, |
541 | .agp_destroy_paged = agp_generic_destroy_pages, | 541 | .agp_destroy_pages = agp_generic_destroy_pages, |
542 | .agp_type_to_mask_type = agp_generic_type_to_mask_type, | 542 | .agp_type_to_mask_type = agp_generic_type_to_mask_type, |
543 | .cant_use_aperture = true, | 543 | .cant_use_aperture = true, |
544 | .needs_scratch_page = true, | 544 | .needs_scratch_page = true, |