aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-02-07 22:33:56 +0900
committerJiri Kosina <jkosina@suse.cz>2012-02-09 23:09:36 +0100
commita7ccf3775219bfcb2e0df73619abbe13abc6408f (patch)
tree46b896902baea6b7cd4d22e6c5f64c0797819f0d /drivers
parentbtrfs: Fix typo in free-space-cache.c (diff)
downloadlinux-dev-a7ccf3775219bfcb2e0df73619abbe13abc6408f.tar.xz
linux-dev-a7ccf3775219bfcb2e0df73619abbe13abc6408f.zip
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.c2
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;
}