From: Masanari Iida Date: Tue, 7 Feb 2012 13:33:56 +0000 (+0900) Subject: char: Fix typo in viotape.c X-Git-Tag: v3.4-rc1~188^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5fb15db4376fed99f6f1cae552766f9d81f062e3;p=thirdparty%2Fkernel%2Flinux.git char: Fix typo in viotape.c Correct spelling "allocat" to "allocate" in drivers/char/viotape.c Signed-off-by: Masanari Iida Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/viotape.c b/drivers/char/viotape.c index ad6e64a2912d6..8b34c65511eb3 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; }