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

Commit 8d820760 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds
Browse files

uml: fix nonremovability of watchdog



The UML watchdog driver was using the wrong config variable to control whether
it can be unloaded once active.

Signed-off-by: default avatarJeff Dike <jdike@linux.intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 818f6ef4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ static int harddog_open(struct inode *inode, struct file *file)
	spin_lock(&lock);
	if(timer_alive)
		goto err;
#ifdef CONFIG_HARDDOG_NOWAYOUT
#ifdef CONFIG_WATCHDOG_NOWAYOUT
	__module_get(THIS_MODULE);
#endif