| .. | .. |
|---|
| 31 | 31 | void drm_free_agp(struct agp_memory * handle, int pages); |
|---|
| 32 | 32 | int drm_bind_agp(struct agp_memory * handle, unsigned int start); |
|---|
| 33 | 33 | 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); |
|---|
| 39 | 34 | |
|---|
| 40 | 35 | struct drm_agp_head *drm_agp_init(struct drm_device *dev); |
|---|
| 41 | 36 | void drm_legacy_agp_clear(struct drm_device *dev); |
|---|
| .. | .. |
|---|
| 78 | 73 | static inline int drm_unbind_agp(struct agp_memory * handle) |
|---|
| 79 | 74 | { |
|---|
| 80 | 75 | 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; |
|---|
| 90 | 76 | } |
|---|
| 91 | 77 | |
|---|
| 92 | 78 | static inline struct drm_agp_head *drm_agp_init(struct drm_device *dev) |
|---|