summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/drm_modes.c
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2013-05-08 17:03:30 +0100
committerDave Airlie <airlied@redhat.com>2013-05-10 14:45:54 +1000
commit97fbfbf40b678b95551276e9413517ba7858dba7 (patch)
treea3206e61635cdab1a9c57b9e874a41b17aa3fdee /drivers/gpu/drm/drm_modes.c
parentf3c58ceef014ea7f8a253b50b8af81b3b898bc77 (diff)
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/drm/drm_modes.c')
-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 f264d08062f0..7a83836879bc 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;