summaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2013-05-08 16:03:30 (GMT)
committerDave Airlie <airlied@redhat.com>2013-05-10 04:45:54 (GMT)
commit97fbfbf40b678b95551276e9413517ba7858dba7 (patch)
treea3206e61635cdab1a9c57b9e874a41b17aa3fdee /drivers/gpu
parentf3c58ceef014ea7f8a253b50b8af81b3b898bc77 (diff)
downloadlinux-fsl-qoriq-97fbfbf40b678b95551276e9413517ba7858dba7.tar.xz
drm: Add missing break in the command line mode parsing code
As we parse the string given on the command line one char at a time, it seems that we do want a break at every case. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/drm_modes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c
index f264d08..7a83836 100644
--- a/drivers/gpu/drm/drm_modes.c
+++ b/drivers/gpu/drm/drm_modes.c
@@ -1143,6 +1143,7 @@ bool drm_mode_parse_command_line_for_connector(const char *mode_option,
was_digit = false;
} else
goto done;
+ break;
case '0' ... '9':
was_digit = true;
break;