Commit a18d4315 authored by Marko Schluessler's avatar Marko Schluessler Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9389): Use kzalloc instead of kmalloc

parent 3e3263e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -527,7 +527,7 @@ struct dvb_frontend *stb6100_attach(struct dvb_frontend *fe,
{
	struct stb6100_state *state = NULL;

	state = kmalloc(sizeof (struct stb6100_state), GFP_KERNEL);
	state = kzalloc(sizeof (struct stb6100_state), GFP_KERNEL);
	if (state == NULL)
		goto error;