Skip to content

Commit

Permalink
drm: drop drm_get_connector_name() and drm_get_encoder_name()
Browse files Browse the repository at this point in the history
No longer used or needed as the structs have a name field.

Acked-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Jani Nikula authored and Dave Airlie committed Jun 4, 2014
1 parent 83a8cfd commit d5ab2b4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
20 changes: 0 additions & 20 deletions drivers/gpu/drm/drm_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,26 +256,6 @@ void drm_connector_ida_destroy(void)
ida_destroy(&drm_connector_enum_list[i].ida);
}

/**
* drm_get_encoder_name - return a string for encoder
* @encoder: the encoder to get name for
*/
const char *drm_get_encoder_name(const struct drm_encoder *encoder)
{
return encoder->name;
}
EXPORT_SYMBOL(drm_get_encoder_name);

/**
* drm_get_connector_name - return a string for connector
* @connector: the connector to get name for
*/
const char *drm_get_connector_name(const struct drm_connector *connector)
{
return connector->name;
}
EXPORT_SYMBOL(drm_get_connector_name);

/**
* drm_get_connector_status_name - return a string for connector status
* @status: connector status to compute name of
Expand Down
2 changes: 0 additions & 2 deletions include/drm/drm_crtc.h
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,6 @@ extern int drm_crtc_check_viewport(const struct drm_crtc *crtc,

extern void drm_encoder_cleanup(struct drm_encoder *encoder);

extern const char *drm_get_connector_name(const struct drm_connector *connector);
extern const char *drm_get_connector_status_name(enum drm_connector_status status);
extern const char *drm_get_subpixel_order_name(enum subpixel_order order);
extern const char *drm_get_dpms_name(int val);
Expand Down Expand Up @@ -972,7 +971,6 @@ extern int drm_mode_create_tv_properties(struct drm_device *dev, int num_formats
char *formats[]);
extern int drm_mode_create_scaling_mode_property(struct drm_device *dev);
extern int drm_mode_create_dirty_info_property(struct drm_device *dev);
extern const char *drm_get_encoder_name(const struct drm_encoder *encoder);

extern int drm_mode_connector_attach_encoder(struct drm_connector *connector,
struct drm_encoder *encoder);
Expand Down

0 comments on commit d5ab2b4

Please sign in to comment.