Commit 1f5cf065 authored by Rusty Russell's avatar Rusty Russell Committed by Linus Torvalds

[PATCH] Make videodev_proc_destory() __exit

From:  Tom Rini <trini@kernel.crashing.org>

  The following marks videodev_proc_destory as __exit.

  This is safe as its only caller is marked as __exit as well.
parent 6bffe94c
......@@ -286,7 +286,7 @@ static void videodev_proc_create(void)
video_dev_proc_entry->owner = THIS_MODULE;
}
static void videodev_proc_destroy(void)
static void __exit videodev_proc_destroy(void)
{
if (video_dev_proc_entry != NULL)
remove_proc_entry("dev", video_proc_entry);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment