Commit d678959f authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie

drm/memory: don't export agp helpers

They're only used by the agpgart support code in drm_agpgart.c,
not by any drivers.

I think long-term we should create a drm_internal.h include file with
all the various functions only used by the drm core and not exported
to drivers, and remove them from drmP.h. Oh, and someone should kill
that upper-case P sometimes ;-) But that's all stuff for future patch
bombs.
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent fac3eaff
...@@ -86,7 +86,6 @@ void drm_free_agp(DRM_AGP_MEM * handle, int pages) ...@@ -86,7 +86,6 @@ void drm_free_agp(DRM_AGP_MEM * handle, int pages)
{ {
agp_free_memory(handle); agp_free_memory(handle);
} }
EXPORT_SYMBOL(drm_free_agp);
/** Wrapper around agp_bind_memory() */ /** Wrapper around agp_bind_memory() */
int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start) int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start)
...@@ -99,7 +98,6 @@ int drm_unbind_agp(DRM_AGP_MEM * handle) ...@@ -99,7 +98,6 @@ int drm_unbind_agp(DRM_AGP_MEM * handle)
{ {
return agp_unbind_memory(handle); return agp_unbind_memory(handle);
} }
EXPORT_SYMBOL(drm_unbind_agp);
#else /* __OS_HAS_AGP */ #else /* __OS_HAS_AGP */
static inline void *agp_remap(unsigned long offset, unsigned long size, static inline void *agp_remap(unsigned long offset, unsigned long size,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment