diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/pmac_feature.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/asm-ppc/pmac_feature.h b/include/asm-ppc/pmac_feature.h index 98c206d8c024..639b690ce6f7 100644 --- a/include/asm-ppc/pmac_feature.h +++ b/include/asm-ppc/pmac_feature.h | |||
@@ -305,6 +305,17 @@ extern void pmac_call_early_video_resume(void); | |||
305 | 305 | ||
306 | #define PMAC_FTR_DEF(x) ((_MACH_Pmac << 16) | (x)) | 306 | #define PMAC_FTR_DEF(x) ((_MACH_Pmac << 16) | (x)) |
307 | 307 | ||
308 | /* The AGP driver registers itself here */ | ||
309 | extern void pmac_register_agp_pm(struct pci_dev *bridge, | ||
310 | int (*suspend)(struct pci_dev *bridge), | ||
311 | int (*resume)(struct pci_dev *bridge)); | ||
312 | |||
313 | /* Those are meant to be used by video drivers to deal with AGP | ||
314 | * suspend resume properly | ||
315 | */ | ||
316 | extern void pmac_suspend_agp_for_card(struct pci_dev *dev); | ||
317 | extern void pmac_resume_agp_for_card(struct pci_dev *dev); | ||
318 | |||
308 | 319 | ||
309 | /* | 320 | /* |
310 | * The part below is for use by macio_asic.c only, do not rely | 321 | * The part below is for use by macio_asic.c only, do not rely |