diff options
author | Thierry Reding <treding@nvidia.com> | 2017-03-29 10:43:53 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-03-31 14:28:44 -0400 |
commit | 50021ff1ad5da500a09ca4866467a12cf66f37cb (patch) | |
tree | b0adbc975370f3fdbcf5c30621d7a903db1a1342 | |
parent | 39b8b2ed4239191b1d37c9cd3599b9b34b838d3a (diff) |
drm/fb-helper: Improve code readability
Add a couple of temporary variables and use shorter names for existing
variables in drm_fb_helper_add_one_connector() for better readability.
Tested-by: John Stultz <john.stultz@linaro.org>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170329144401.1804-4-thierry.reding@gmail.com
-rw-r--r-- | drivers/gpu/drm/drm_fb_helper.c | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index 875a49048222..8afc1bb287a2 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c | |||
@@ -109,31 +109,38 @@ static DEFINE_MUTEX(kernel_fb_helper_lock); | |||
109 | for (({ lockdep_assert_held(&(fbh)->dev->mode_config.mutex); }), \ | 109 | for (({ lockdep_assert_held(&(fbh)->dev->mode_config.mutex); }), \ |
110 | i__ = 0; i__ < (fbh)->connector_count; i__++) | 110 | i__ = 0; i__ < (fbh)->connector_count; i__++) |
111 | 111 | ||
112 | int drm_fb_helper_add_one_connector(struct drm_fb_helper *fb_helper, struct drm_connector *connector) | 112 | int drm_fb_helper_add_one_connector(struct drm_fb_helper *fb_helper, |
113 | struct drm_connector *connector) | ||
113 | { | 114 | { |
115 | struct drm_fb_helper_connector *fb_conn; | ||
114 | struct drm_fb_helper_connector **temp; | 116 | struct drm_fb_helper_connector **temp; |
115 | struct drm_fb_helper_connector *fb_helper_connector; | 117 | unsigned int count; |
116 | 118 | ||
117 | if (!drm_fbdev_emulation) | 119 | if (!drm_fbdev_emulation) |
118 | return 0; | 120 | return 0; |
119 | 121 | ||
120 | WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex)); | 122 | WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex)); |
121 | if (fb_helper->connector_count + 1 > fb_helper->connector_info_alloc_count) { | 123 | |
122 | temp = krealloc(fb_helper->connector_info, sizeof(struct drm_fb_helper_connector *) * (fb_helper->connector_count + 1), GFP_KERNEL); | 124 | count = fb_helper->connector_count + 1; |
125 | |||
126 | if (count > fb_helper->connector_info_alloc_count) { | ||
127 | size_t size = count * sizeof(fb_conn); | ||
128 | |||
129 | temp = krealloc(fb_helper->connector_info, size, GFP_KERNEL); | ||
123 | if (!temp) | 130 | if (!temp) |
124 | return -ENOMEM; | 131 | return -ENOMEM; |
125 | 132 | ||
126 | fb_helper->connector_info_alloc_count = fb_helper->connector_count + 1; | 133 | fb_helper->connector_info_alloc_count = count; |
127 | fb_helper->connector_info = temp; | 134 | fb_helper->connector_info = temp; |
128 | } | 135 | } |
129 | 136 | ||
130 | fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL); | 137 | fb_conn = kzalloc(sizeof(*fb_conn), GFP_KERNEL); |
131 | if (!fb_helper_connector) | 138 | if (!fb_conn) |
132 | return -ENOMEM; | 139 | return -ENOMEM; |
133 | 140 | ||
134 | drm_connector_get(connector); | 141 | drm_connector_get(connector); |
135 | fb_helper_connector->connector = connector; | 142 | fb_conn->connector = connector; |
136 | fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector; | 143 | fb_helper->connector_info[fb_helper->connector_count++] = fb_conn; |
137 | return 0; | 144 | return 0; |
138 | } | 145 | } |
139 | EXPORT_SYMBOL(drm_fb_helper_add_one_connector); | 146 | EXPORT_SYMBOL(drm_fb_helper_add_one_connector); |