Skip to content

Commit

Permalink
Staging: p9auth: adding __init/__exit macros
Browse files Browse the repository at this point in the history
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of drivers/staging/p9auth/p9auth.c


Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Peter Huewe authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent 64ed201 commit 24e4688
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/p9auth/p9auth.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ static const struct file_operations cap_fops = {
.release = cap_release,
};

/* no __exit here because it can be called by the init function */
static void cap_cleanup_module(void)
{
int i;
Expand All @@ -360,7 +361,7 @@ static void cap_setup_cdev(struct cap_dev *dev, int index)
printk(KERN_NOTICE "Error %d adding cap%d", err, index);
}

static int cap_init_module(void)
static int __init cap_init_module(void)
{
int result, i;
dev_t dev = 0;
Expand Down

0 comments on commit 24e4688

Please sign in to comment.