Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205095
b: refs/heads/master
c: 6d6a413
h: refs/heads/master
i:
  205093: dccd703
  205091: 9d3ffaa
  205087: 4ce8679
v: v3
  • Loading branch information
Francisco Jerez authored and Ben Skeggs committed Jul 26, 2010
1 parent 9fbe376 commit 1c346c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: 67eda20e6b7a757ed45f6b5a8a4d30c2a0d47c7a
refs/heads/master: 6d6a413aa23c8bc7a5787596e06f3d6d8d4f11c7
4 changes: 2 additions & 2 deletions trunk/drivers/gpu/drm/i2c/ch7006_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void ch7006_encoder_set_config(struct drm_encoder *encoder,
{
struct ch7006_priv *priv = to_ch7006_priv(encoder);

priv->params = params;
priv->params = *(struct ch7006_encoder_params *)params;
}

static void ch7006_encoder_destroy(struct drm_encoder *encoder)
Expand Down Expand Up @@ -114,7 +114,7 @@ static void ch7006_encoder_mode_set(struct drm_encoder *encoder,
{
struct i2c_client *client = drm_i2c_encoder_get_client(encoder);
struct ch7006_priv *priv = to_ch7006_priv(encoder);
struct ch7006_encoder_params *params = priv->params;
struct ch7006_encoder_params *params = &priv->params;
struct ch7006_state *state = &priv->state;
uint8_t *regs = state->regs;
struct ch7006_mode *mode = priv->mode;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/gpu/drm/i2c/ch7006_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ struct ch7006_state {
};

struct ch7006_priv {
struct ch7006_encoder_params *params;
struct ch7006_encoder_params params;
struct ch7006_mode *mode;

struct ch7006_state state;
Expand Down

0 comments on commit 1c346c9

Please sign in to comment.