diff options
author | Tommi Rantala <[email protected]> | 2009-10-05 13:31:46 -0700 |
---|---|---|
committer | Tony Lindgren <[email protected]> | 2009-10-06 08:31:50 -0700 |
commit | 7999cad0e3d59f3430173288048c971bef3ec492 (patch) | |
tree | 04586c4e39ed247847e53c3a7382de82abe672d5 | |
parent | 03bb2b493cf58edf11e5966f8469534259d2fffe (diff) |
omapfb: Blizzard: fix pointer to be const
Fixes a compiler warning:
warning: assignment discards qualifiers from pointer target type
Cc: Tomi Valkeinen <[email protected]>
Cc: Imre Deak <[email protected]>
Signed-off-by: Tommi Rantala <[email protected]>
Signed-off-by: Tony Lindgren <[email protected]>
-rw-r--r-- | drivers/video/omap/blizzard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap/blizzard.c b/drivers/video/omap/blizzard.c index d5e59556f9e2..ce28be696a39 100644 --- a/drivers/video/omap/blizzard.c +++ b/drivers/video/omap/blizzard.c @@ -191,7 +191,7 @@ struct blizzard_struct { struct omapfb_device *fbdev; struct lcd_ctrl_extif *extif; - struct lcd_ctrl *int_ctrl; + const struct lcd_ctrl *int_ctrl; void (*power_up)(struct device *dev); void (*power_down)(struct device *dev); |