drm: Make drm_mode_remove() static
It's only used in drm_crtc.c. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
committed by
Dave Airlie
parent
67587e8689
commit
86f422d5be
@@ -686,20 +686,19 @@ void drm_mode_probed_add(struct drm_connector *connector,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_mode_probed_add);
|
EXPORT_SYMBOL(drm_mode_probed_add);
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* drm_mode_remove - remove and free a mode
|
* drm_mode_remove - remove and free a mode
|
||||||
* @connector: connector list to modify
|
* @connector: connector list to modify
|
||||||
* @mode: mode to remove
|
* @mode: mode to remove
|
||||||
*
|
*
|
||||||
* Remove @mode from @connector's mode list, then free it.
|
* Remove @mode from @connector's mode list, then free it.
|
||||||
*/
|
*/
|
||||||
void drm_mode_remove(struct drm_connector *connector,
|
static void drm_mode_remove(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
list_del(&mode->head);
|
list_del(&mode->head);
|
||||||
drm_mode_destroy(connector->dev, mode);
|
drm_mode_destroy(connector->dev, mode);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_mode_remove);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* drm_connector_init - Init a preallocated connector
|
* drm_connector_init - Init a preallocated connector
|
||||||
|
|||||||
@@ -910,7 +910,6 @@ extern struct edid *drm_get_edid(struct drm_connector *connector,
|
|||||||
struct i2c_adapter *adapter);
|
struct i2c_adapter *adapter);
|
||||||
extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
|
extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid);
|
||||||
extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode);
|
extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode);
|
||||||
extern void drm_mode_remove(struct drm_connector *connector, struct drm_display_mode *mode);
|
|
||||||
extern void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src);
|
extern void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src);
|
||||||
extern struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
|
extern struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
|
||||||
const struct drm_display_mode *mode);
|
const struct drm_display_mode *mode);
|
||||||
|
|||||||
Reference in New Issue
Block a user