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

Commit f2965d68 authored by Jack Steiner's avatar Jack Steiner Committed by Linus Torvalds
Browse files

gru: fix bug in module unload



Fix bug in module unload.  Previous code was not correctly deleting the
files in /proc.

Signed-off-by: default avatarJack Steiner <steiner@sgi.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 99f7c229
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ static void delete_proc_files(void)
		for (p = proc_files; p->name; p++)
			if (p->entry)
				remove_proc_entry(p->name, proc_gru);
		remove_proc_entry("gru", NULL);
		remove_proc_entry("gru", proc_gru->parent);
	}
}