Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6d6a413a authored by Francisco Jerez's avatar Francisco Jerez Committed by Ben Skeggs
Browse files

drm/i2c/ch7006: Don't assume that the specified config points to static memory.

parent 67eda20e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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;