aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-02-03 08:56:59 -0500
committerJiri Kosina <jkosina@suse.cz>2012-02-05 11:14:47 -0500
commit3472a2caa49b55c2923e7c876aa84f13eb4b8863 (patch)
treee4445f0dd4f20428c83b6918e4a7b04ecdf37ee3 /drivers/media/dvb/frontends
parent4aa6ded9fa72a584f3e646b52c64238426b0103a (diff)
frontends: Fix typo in tda1004x.c
Correct spelling "alocate" to "allocate" in drivers/media/dvb/frontends/tda1004x.c Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/media/dvb/frontends')
-rw-r--r--drivers/media/dvb/frontends/tda1004x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/tda1004x.c b/drivers/media/dvb/frontends/tda1004x.c
index ae6f22aae677..35d72b46aa1e 100644
--- a/drivers/media/dvb/frontends/tda1004x.c
+++ b/drivers/media/dvb/frontends/tda1004x.c
@@ -1272,7 +1272,7 @@ struct dvb_frontend* tda10045_attach(const struct tda1004x_config* config,
1272 /* allocate memory for the internal state */ 1272 /* allocate memory for the internal state */
1273 state = kzalloc(sizeof(struct tda1004x_state), GFP_KERNEL); 1273 state = kzalloc(sizeof(struct tda1004x_state), GFP_KERNEL);
1274 if (!state) { 1274 if (!state) {
1275 printk(KERN_ERR "Can't alocate memory for tda10045 state\n"); 1275 printk(KERN_ERR "Can't allocate memory for tda10045 state\n");
1276 return NULL; 1276 return NULL;
1277 } 1277 }
1278 1278
@@ -1342,7 +1342,7 @@ struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config,
1342 /* allocate memory for the internal state */ 1342 /* allocate memory for the internal state */
1343 state = kzalloc(sizeof(struct tda1004x_state), GFP_KERNEL); 1343 state = kzalloc(sizeof(struct tda1004x_state), GFP_KERNEL);
1344 if (!state) { 1344 if (!state) {
1345 printk(KERN_ERR "Can't alocate memory for tda10046 state\n"); 1345 printk(KERN_ERR "Can't allocate memory for tda10046 state\n");
1346 return NULL; 1346 return NULL;
1347 } 1347 }
1348 1348