From cfdfa903254a4233479b4cf56bca910ce8965a1e Mon Sep 17 00:00:00 2001 From: Pete Batard Date: Sat, 7 Nov 2015 18:00:16 +0000 Subject: [PATCH] Fix a copy/paste error * Issue reported by kaiwan --- parrot_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.44.0