forked from Minki/linux
drm/i2c/ch7006: Don't assume that the specified config points to static memory.
Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
67eda20e6b
commit
6d6a413aa2
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user