diff options
| author | Maxime Ripard <[email protected]> | 2019-09-06 07:46:14 +0000 |
|---|---|---|
| committer | Maxime Ripard <[email protected]> | 2019-09-06 15:55:33 +0000 |
| commit | a3200debde5fda3e25f7e22cb2bc17a9280f7811 (patch) | |
| tree | d93a92ecadca7a120e7183a5aac2772f89d610f0 | |
| parent | drm/selftests: modes: Add more unit tests for the cmdline parser (diff) | |
| download | kernel-a3200debde5fda3e25f7e22cb2bc17a9280f7811.tar.gz kernel-a3200debde5fda3e25f7e22cb2bc17a9280f7811.zip | |
drm/modes: Make the whitelist more const
The commit 3764137906a5 ("drm/modes: Introduce a whitelist for the named
modes") introduced a whitelist in the named modes lookup code in order to
be a bit more robust.
However, even though the char pointers were made const, the array itself
was not. Let's fix that.
Fixes: 3764137906a5 ("drm/modes: Introduce a whitelist for the named modes")
Suggested-by: Jani Nikula <[email protected]>
Reviewed-by: Jani Nikula <[email protected]>
Signed-off-by: Maxime Ripard <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
| -rw-r--r-- | drivers/gpu/drm/drm_modes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index 0d23bf729e9f..c814bcef18a4 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c @@ -1677,7 +1677,7 @@ static int drm_mode_parse_cmdline_options(char *str, size_t len, return 0; } -static const char *drm_named_modes_whitelist[] = { +static const char * const drm_named_modes_whitelist[] = { "NTSC", "PAL", }; |
