Loading drivers/gpu/drm/drm_edid.c +2 −2 Original line number Diff line number Diff line Loading @@ -3576,8 +3576,8 @@ void drm_set_preferred_mode(struct drm_connector *connector, struct drm_display_mode *mode; list_for_each_entry(mode, &connector->probed_modes, head) { if (drm_mode_width(mode) == hpref && drm_mode_height(mode) == vpref) if (mode->hdisplay == hpref && mode->vdisplay == vpref) mode->type |= DRM_MODE_TYPE_PREFERRED; } } Loading drivers/gpu/drm/drm_fb_helper.c +2 −2 Original line number Diff line number Diff line Loading @@ -1141,8 +1141,8 @@ struct drm_display_mode *drm_has_preferred_mode(struct drm_fb_helper_connector * struct drm_display_mode *mode; list_for_each_entry(mode, &fb_connector->connector->modes, head) { if (drm_mode_width(mode) > width || drm_mode_height(mode) > height) if (mode->hdisplay > width || mode->vdisplay > height) continue; if (mode->type & DRM_MODE_TYPE_PREFERRED) return mode; Loading drivers/gpu/drm/drm_modes.c +0 −35 Original line number Diff line number Diff line Loading @@ -647,41 +647,6 @@ void drm_mode_set_name(struct drm_display_mode *mode) } EXPORT_SYMBOL(drm_mode_set_name); /** * drm_mode_width - get the width of a mode * @mode: mode * * Return @mode's width (hdisplay) value. * * FIXME: is this needed? * * RETURNS: * @mode->hdisplay */ int drm_mode_width(const struct drm_display_mode *mode) { return mode->hdisplay; } EXPORT_SYMBOL(drm_mode_width); /** * drm_mode_height - get the height of a mode * @mode: mode * * Return @mode's height (vdisplay) value. * * FIXME: is this needed? * * RETURNS: * @mode->vdisplay */ int drm_mode_height(const struct drm_display_mode *mode) { return mode->vdisplay; } EXPORT_SYMBOL(drm_mode_height); /** drm_mode_hsync - get the hsync of a mode * @mode: mode * Loading include/drm/drm_modes.h +0 −2 Original line number Diff line number Diff line Loading @@ -195,8 +195,6 @@ int of_get_drm_display_mode(struct device_node *np, int index); void drm_mode_set_name(struct drm_display_mode *mode); int drm_mode_width(const struct drm_display_mode *mode); int drm_mode_height(const struct drm_display_mode *mode); int drm_mode_hsync(const struct drm_display_mode *mode); int drm_mode_vrefresh(const struct drm_display_mode *mode); Loading Loading
drivers/gpu/drm/drm_edid.c +2 −2 Original line number Diff line number Diff line Loading @@ -3576,8 +3576,8 @@ void drm_set_preferred_mode(struct drm_connector *connector, struct drm_display_mode *mode; list_for_each_entry(mode, &connector->probed_modes, head) { if (drm_mode_width(mode) == hpref && drm_mode_height(mode) == vpref) if (mode->hdisplay == hpref && mode->vdisplay == vpref) mode->type |= DRM_MODE_TYPE_PREFERRED; } } Loading
drivers/gpu/drm/drm_fb_helper.c +2 −2 Original line number Diff line number Diff line Loading @@ -1141,8 +1141,8 @@ struct drm_display_mode *drm_has_preferred_mode(struct drm_fb_helper_connector * struct drm_display_mode *mode; list_for_each_entry(mode, &fb_connector->connector->modes, head) { if (drm_mode_width(mode) > width || drm_mode_height(mode) > height) if (mode->hdisplay > width || mode->vdisplay > height) continue; if (mode->type & DRM_MODE_TYPE_PREFERRED) return mode; Loading
drivers/gpu/drm/drm_modes.c +0 −35 Original line number Diff line number Diff line Loading @@ -647,41 +647,6 @@ void drm_mode_set_name(struct drm_display_mode *mode) } EXPORT_SYMBOL(drm_mode_set_name); /** * drm_mode_width - get the width of a mode * @mode: mode * * Return @mode's width (hdisplay) value. * * FIXME: is this needed? * * RETURNS: * @mode->hdisplay */ int drm_mode_width(const struct drm_display_mode *mode) { return mode->hdisplay; } EXPORT_SYMBOL(drm_mode_width); /** * drm_mode_height - get the height of a mode * @mode: mode * * Return @mode's height (vdisplay) value. * * FIXME: is this needed? * * RETURNS: * @mode->vdisplay */ int drm_mode_height(const struct drm_display_mode *mode) { return mode->vdisplay; } EXPORT_SYMBOL(drm_mode_height); /** drm_mode_hsync - get the hsync of a mode * @mode: mode * Loading
include/drm/drm_modes.h +0 −2 Original line number Diff line number Diff line Loading @@ -195,8 +195,6 @@ int of_get_drm_display_mode(struct device_node *np, int index); void drm_mode_set_name(struct drm_display_mode *mode); int drm_mode_width(const struct drm_display_mode *mode); int drm_mode_height(const struct drm_display_mode *mode); int drm_mode_hsync(const struct drm_display_mode *mode); int drm_mode_vrefresh(const struct drm_display_mode *mode); Loading