diff options
Diffstat (limited to 'drivers/media/dvb/frontends/tda10048.c')
| -rw-r--r-- | drivers/media/dvb/frontends/tda10048.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/tda10048.c b/drivers/media/dvb/frontends/tda10048.c index cc8862ce4aa..4e2a7c8b2f6 100644 --- a/drivers/media/dvb/frontends/tda10048.c +++ b/drivers/media/dvb/frontends/tda10048.c @@ -1095,7 +1095,7 @@ struct dvb_frontend *tda10048_attach(const struct tda10048_config *config,  	dprintk(1, "%s()\n", __func__);  	/* allocate memory for the internal state */ -	state = kmalloc(sizeof(struct tda10048_state), GFP_KERNEL); +	state = kzalloc(sizeof(struct tda10048_state), GFP_KERNEL);  	if (state == NULL)  		goto error;  |