mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-07 11:12:04 -05:00
drm/gma500: remove an unneeded NULL check
"connector" is the list iterator and it can't be NULL. It causes a static checker warning because we dereference the iterator to get the next item in the list. Let's remove this check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20170628124100.3pw2gyitsfopaib5@mwanda
This commit is contained in:
committed by
Daniel Vetter
parent
4177b51e19
commit
faa8b0b753
@@ -737,11 +737,7 @@ static int mdfld_crtc_mode_set(struct drm_crtc *crtc,
|
||||
sizeof(struct drm_display_mode));
|
||||
|
||||
list_for_each_entry(connector, &mode_config->connector_list, head) {
|
||||
if (!connector)
|
||||
continue;
|
||||
|
||||
encoder = connector->encoder;
|
||||
|
||||
if (!encoder)
|
||||
continue;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user