From: Pete Batard Date: Sat, 7 Nov 2015 18:00:16 +0000 (+0000) Subject: Fix a copy/paste error X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=cfdfa903254a4233479b4cf56bca910ce8965a1e;p=parrot.git Fix a copy/paste error * Issue reported by kaiwan --- diff --git a/parrot_driver.c b/parrot_driver.c index 78f3f49..4a937a6 100644 --- a/parrot_driver.c +++ b/parrot_driver.c @@ -56,7 +56,7 @@ module_param(debug, bool, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(debug, "enable debug info (default: false)"); static bool one_shot = true; /* only read a single message after open() */ module_param(one_shot, bool, S_IRUGO | S_IWUSR); -MODULE_PARM_DESC(debug, "disable the readout of multiple messages at once (default: true)"); +MODULE_PARM_DESC(one_shot, "disable the readout of multiple messages at once (default: true)"); static int parrot_device_open(struct inode* inode, struct file* filp)