char: Fix typo in viotape.c
authorMasanari Iida <standby24x7@gmail.com>
Tue, 7 Feb 2012 13:33:56 +0000 (22:33 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Feb 2012 16:49:50 +0000 (08:49 -0800)
Correct spelling "allocat" to "allocate" in
drivers/char/viotape.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/viotape.c

index ad6e64a2912d6fe61d06d7c20135e76a92bc9e1c..8b34c65511eb3fa516bf323c320182b187a83985 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;
        }