diff options
Diffstat (limited to 'drivers/media/dvb/frontends/l64781.c')
| -rw-r--r-- | drivers/media/dvb/frontends/l64781.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/l64781.c b/drivers/media/dvb/frontends/l64781.c index e1e70e9e0cb..3051b64aa17 100644 --- a/drivers/media/dvb/frontends/l64781.c +++ b/drivers/media/dvb/frontends/l64781.c @@ -501,7 +501,7 @@ struct dvb_frontend* l64781_attach(const struct l64781_config* config,  			   { .addr = config->demod_address, .flags = I2C_M_RD, .buf = b1, .len = 1 } };  	/* allocate memory for the internal state */ -	state = kmalloc(sizeof(struct l64781_state), GFP_KERNEL); +	state = kzalloc(sizeof(struct l64781_state), GFP_KERNEL);  	if (state == NULL) goto error;  	/* setup the state */  |