[Intel-gfx] [PATCH 17/37] drm/i915: Mark static sdvo strings as const
Chris Wilson
chris at chris-wilson.co.uk
Wed Mar 10 23:45:04 CET 2010
Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
---
drivers/gpu/drm/i915/intel_sdvo.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_sdvo.c b/drivers/gpu/drm/i915/intel_sdvo.c
index 1da56ba..872a0ae 100644
--- a/drivers/gpu/drm/i915/intel_sdvo.c
+++ b/drivers/gpu/drm/i915/intel_sdvo.c
@@ -37,7 +37,7 @@
#include "intel_sdvo_regs.h"
#include <linux/dmi.h>
-static char *tv_format_names[] = {
+static const char *tv_format_names[] = {
"NTSC_M" , "NTSC_J" , "NTSC_443",
"PAL_B" , "PAL_D" , "PAL_G" ,
"PAL_H" , "PAL_I" , "PAL_M" ,
@@ -83,10 +83,10 @@ struct intel_sdvo_priv {
bool is_tv;
/* This is for current tv format name */
- char *tv_format_name;
+ const char *tv_format_name;
/* This contains all current supported TV format */
- char *tv_format_supported[TV_FORMAT_NUM];
+ const char *tv_format_supported[TV_FORMAT_NUM];
int format_supported_num;
struct drm_property *tv_format_property;
struct drm_property *tv_format_name_property[TV_FORMAT_NUM];
--
1.7.0
More information about the Intel-gfx
mailing list