linux-next: x86 tree build failure
From: Stephen Rothwell <hidden>
Date: 2008-08-25 10:22:28
Subsystem:
agpgart driver, the rest · Maintainers:
David Airlie, Linus Torvalds
From: Stephen Rothwell <hidden>
Date: 2008-08-25 10:22:28
Subsystem:
agpgart driver, the rest · Maintainers:
David Airlie, Linus Torvalds
Hi all,
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 ...
I applied the following patch.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
From: Stephen Rothwell <redacted>
Date: Mon, 25 Aug 2008 20:16:07 +1000
Subject: [PATCH] agp: fix typo in uninorth-agp
Signed-off-by: Stephen Rothwell <redacted>
---
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 2accc97..0f004b6 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 = { .agp_alloc_page = agp_generic_alloc_page, .agp_alloc_pages = agp_generic_alloc_pages, .agp_destroy_page = agp_generic_destroy_page, - .agp_destroy_paged = agp_generic_destroy_pages, + .agp_destroy_pages = agp_generic_destroy_pages, .agp_type_to_mask_type = agp_generic_type_to_mask_type, .cant_use_aperture = true, .needs_scratch_page = true,
--
1.5.6.3