Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5fb15db4 authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman
Browse files

char: Fix typo in viotape.c



Correct spelling "allocat" to "allocate" in
drivers/char/viotape.c

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 815b043d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}