diff options
| author | Jeff Wiedemeier <jeff.wiedemeier@hp.com> | 2003-06-04 04:28:50 -0700 |
|---|---|---|
| committer | Richard Henderson <rth@kanga.twiddle.net> | 2003-06-04 04:28:50 -0700 |
| commit | ddeb999bf3a44862141dc81fc760ed4353ce64b4 (patch) | |
| tree | a02fb7322aa02972670d86f6cfc25bfb1807cd7a /include | |
| parent | fbf47415732b00ff5578d55c6be779a109a01e1f (diff) | |
[PATCH] compile fix for agp_memory struct definitition change
In 2.5.70, the agp_memory struct changed from:
typedef struct agp_memory
to:
struct agp_memory
This patch propagates that change into include/asm-alpha/agp_backend.h and
arch/alpha/kernel/core_{titan,marvel}.c
/jeff
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-alpha/agp_backend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-alpha/agp_backend.h b/include/asm-alpha/agp_backend.h index 3998e2547545..55dd44a2cea7 100644 --- a/include/asm-alpha/agp_backend.h +++ b/include/asm-alpha/agp_backend.h @@ -33,8 +33,8 @@ struct alpha_agp_ops { int (*setup)(alpha_agp_info *); void (*cleanup)(alpha_agp_info *); int (*configure)(alpha_agp_info *); - int (*bind)(alpha_agp_info *, off_t, agp_memory *); - int (*unbind)(alpha_agp_info *, off_t, agp_memory *); + int (*bind)(alpha_agp_info *, off_t, struct agp_memory *); + int (*unbind)(alpha_agp_info *, off_t, struct agp_memory *); unsigned long (*translate)(alpha_agp_info *, dma_addr_t); }; |
