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

Commit 546c9736 authored by Masanari Iida's avatar Masanari Iida Committed by Mauro Carvalho Chehab
Browse files

[media] [trivial] frontends: Fix typo in tda1004x.c



Correct spelling "alocate" to "allocate" in
drivers/media/dvb/frontends/tda1004x.c

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent f51f86fd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1272,7 +1272,7 @@ struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
	/* allocate memory for the internal state */
	state = kzalloc(sizeof(struct tda1004x_state), GFP_KERNEL);
	if (!state) {
		printk(KERN_ERR "Can't alocate memory for tda10045 state\n");
		printk(KERN_ERR "Can't allocate memory for tda10045 state\n");
		return NULL;
	}

@@ -1342,7 +1342,7 @@ struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
	/* allocate memory for the internal state */
	state = kzalloc(sizeof(struct tda1004x_state), GFP_KERNEL);
	if (!state) {
		printk(KERN_ERR "Can't alocate memory for tda10046 state\n");
		printk(KERN_ERR "Can't allocate memory for tda10046 state\n");
		return NULL;
	}