Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 251052
b: refs/heads/master
c: ea29033
h: refs/heads/master
v: v3
  • Loading branch information
Tomi Valkeinen committed May 11, 2011
1 parent 2bc0d1a commit da28d1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6705615e92b6d44c8e09703282bee7d7275bb74f
refs/heads/master: ea29033359e3b13f63ddf2b1c615e1ed32625a99
10 changes: 5 additions & 5 deletions trunk/drivers/video/omap2/dss/dss_features.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct omap_dss_features {
};

/* This struct is assigned to one of the below during initialization */
static struct omap_dss_features *omap_current_dss_features;
static const struct omap_dss_features *omap_current_dss_features;

static const struct dss_reg_field omap2_dss_reg_fields[] = {
[FEAT_REG_FIRHINC] = { 11, 0 },
Expand Down Expand Up @@ -226,7 +226,7 @@ static const struct dss_param_range omap4_dss_param_range[] = {
};

/* OMAP2 DSS Features */
static struct omap_dss_features omap2_dss_features = {
static const struct omap_dss_features omap2_dss_features = {
.reg_fields = omap2_dss_reg_fields,
.num_reg_fields = ARRAY_SIZE(omap2_dss_reg_fields),

Expand All @@ -244,7 +244,7 @@ static struct omap_dss_features omap2_dss_features = {
};

/* OMAP3 DSS Features */
static struct omap_dss_features omap3430_dss_features = {
static const struct omap_dss_features omap3430_dss_features = {
.reg_fields = omap3_dss_reg_fields,
.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),

Expand All @@ -263,7 +263,7 @@ static struct omap_dss_features omap3430_dss_features = {
.dss_params = omap3_dss_param_range,
};

static struct omap_dss_features omap3630_dss_features = {
static const struct omap_dss_features omap3630_dss_features = {
.reg_fields = omap3_dss_reg_fields,
.num_reg_fields = ARRAY_SIZE(omap3_dss_reg_fields),

Expand All @@ -284,7 +284,7 @@ static struct omap_dss_features omap3630_dss_features = {
};

/* OMAP4 DSS Features */
static struct omap_dss_features omap4_dss_features = {
static const struct omap_dss_features omap4_dss_features = {
.reg_fields = omap4_dss_reg_fields,
.num_reg_fields = ARRAY_SIZE(omap4_dss_reg_fields),

Expand Down

0 comments on commit da28d1f

Please sign in to comment.