diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2013-05-08 17:03:30 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-05-10 14:45:54 +1000 |
commit | 97fbfbf40b678b95551276e9413517ba7858dba7 (patch) | |
tree | a3206e61635cdab1a9c57b9e874a41b17aa3fdee /drivers/gpu/drm | |
parent | f3c58ceef014ea7f8a253b50b8af81b3b898bc77 (diff) | |
download | op-kernel-dev-97fbfbf40b678b95551276e9413517ba7858dba7.zip op-kernel-dev-97fbfbf40b678b95551276e9413517ba7858dba7.tar.gz |
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')
-rw-r--r-- | drivers/gpu/drm/drm_modes.c | 1 |
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; |