char: Fix typo in viotape.c
authorMasanari Iida <standby24x7@gmail.com>
Tue, 7 Feb 2012 13:33:56 +0000 (22:33 +0900)
committerJiri Kosina <jkosina@suse.cz>
Thu, 9 Feb 2012 22:09:36 +0000 (23:09 +0100)
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>
drivers/char/viotape.c

index ad6e64a..8b34c65 100644 (file)
@@ -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;
        }