diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-02-07 08:33:56 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-02-09 17:09:36 -0500 |
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) | |||
976 | 976 | ||
977 | tape_class = class_create(THIS_MODULE, "tape"); | 977 | tape_class = class_create(THIS_MODULE, "tape"); |
978 | if (IS_ERR(tape_class)) { | 978 | if (IS_ERR(tape_class)) { |
979 | printk(VIOTAPE_KERN_WARN "Unable to allocat class\n"); | 979 | printk(VIOTAPE_KERN_WARN "Unable to allocate class\n"); |
980 | ret = PTR_ERR(tape_class); | 980 | ret = PTR_ERR(tape_class); |
981 | goto unreg_chrdev; | 981 | goto unreg_chrdev; |
982 | } | 982 | } |