diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-02-07 22:33:56 +0900 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-02-09 23:09:36 +0100 |
commit | a7ccf3775219bfcb2e0df73619abbe13abc6408f (patch) | |
tree | 46b896902baea6b7cd4d22e6c5f64c0797819f0d /drivers | |
parent | 934e7d44b810691ae5aefa3308b97a402aac1a55 (diff) |
char: Fix typo in viotape.c
Correct spelling "allocat" to "allocate" in
drivers/char/viotape.c
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/viotape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/viotape.c b/drivers/char/viotape.c index ad6e64a2912d..8b34c65511eb 100644 --- a/drivers/char/viotape.c +++ b/drivers/char/viotape.c @@ -976,7 +976,7 @@ int __init viotap_init(void) tape_class = class_create(THIS_MODULE, "tape"); if (IS_ERR(tape_class)) { - printk(VIOTAPE_KERN_WARN "Unable to allocat class\n"); + printk(VIOTAPE_KERN_WARN "Unable to allocate class\n"); ret = PTR_ERR(tape_class); goto unreg_chrdev; } |