hc
2024-05-10 10ebd8556b7990499c896a550e3d416b444211e6
kernel/include/drm/drm_agpsupport.h
....@@ -31,11 +31,6 @@
3131 void drm_free_agp(struct agp_memory * handle, int pages);
3232 int drm_bind_agp(struct agp_memory * handle, unsigned int start);
3333 int drm_unbind_agp(struct agp_memory * handle);
34
-struct agp_memory *drm_agp_bind_pages(struct drm_device *dev,
35
- struct page **pages,
36
- unsigned long num_pages,
37
- uint32_t gtt_offset,
38
- uint32_t type);
3934
4035 struct drm_agp_head *drm_agp_init(struct drm_device *dev);
4136 void drm_legacy_agp_clear(struct drm_device *dev);
....@@ -78,15 +73,6 @@
7873 static inline int drm_unbind_agp(struct agp_memory * handle)
7974 {
8075 return -ENODEV;
81
-}
82
-
83
-static inline struct agp_memory *drm_agp_bind_pages(struct drm_device *dev,
84
- struct page **pages,
85
- unsigned long num_pages,
86
- uint32_t gtt_offset,
87
- uint32_t type)
88
-{
89
- return NULL;
9076 }
9177
9278 static inline struct drm_agp_head *drm_agp_init(struct drm_device *dev)