Staging: comedi: proc: Add __init prefix

Add __init prefix so that symbol will be discarded after
module loading.

Signed-off-by: Cheah Kok Cheong <thrust73@gmail.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Cheah Kok Cheong 2016-12-30 19:26:50 +08:00 committed by Greg Kroah-Hartman
parent 5f52f319cd
commit ec0bff06bb
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ static const struct file_operations comedi_proc_fops = {
.release = single_release,
};
void comedi_proc_init(void)
void __init comedi_proc_init(void)
{
proc_create("comedi", 0444, NULL, &comedi_proc_fops);
}