Linux Framebuffer Layer development
 help / color / mirror / Atom feed
* [PATCH] da8xx: De-constify members in the platform config.
@ 2012-10-30 18:15 Pantelis Antoniou
  0 siblings, 0 replies; only message in thread
From: Pantelis Antoniou @ 2012-10-30 18:15 UTC (permalink / raw)
  To: Florian Tobias Schandinat
  Cc: Pantelis Antoniou, linux-fbdev, linux-kernel, Koen Kooi,
	Matt Porter, Russ Dill, linux-omap

There's no need for this to be const. It interferes with
creating the platform data dynamically.

Signed-off-by: Pantelis Antoniou <panto@antoniou-consulting.com>
---
 include/video/da8xx-fb.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/video/da8xx-fb.h b/include/video/da8xx-fb.h
index 5a0e4f9..a512d6b 100644
--- a/include/video/da8xx-fb.h
+++ b/include/video/da8xx-fb.h
@@ -35,9 +35,9 @@ struct display_panel {
 };
 
 struct da8xx_lcdc_platform_data {
-	const char manu_name[10];
+	char manu_name[10];
 	void *controller_data;
-	const char type[25];
+	char type[25];
 	void (*panel_power_ctrl)(int);
 };
 
-- 
1.7.12


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-10-30 18:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-30 18:15 [PATCH] da8xx: De-constify members in the platform config Pantelis Antoniou

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox