On 19/04/18 15:12, Oleksandr Andrushchenko wrote:Then I'll go with the diff above, e.g. boolean no_{kbd|ptr})dev
On 04/19/2018 04:10 PM, Jason Andryuk wrote:I really have no preference here. What should be taken into account is
On Thu, Apr 19, 2018 at 9:01 AM, Oleksandr AndrushchenkoI have no preference here, either way works for me
<andr2000@xxxxxxxxx> wrote:
Ok, so I'll send v2 with the following changes:I prefer direct logic over inverse logic. Maybe just use kbd_dev,
diff --git a/drivers/input/misc/xen-kbdfront.c
b/drivers/input/misc/xen-kbdfront.c
index a3306aad40b0..d8cca212f737 100644
--- a/drivers/input/misc/xen-kbdfront.c
+++ b/drivers/input/misc/xen-kbdfront.c
@@ -51,13 +51,13 @@ module_param_array(ptr_size, int, NULL, 0444);
 MODULE_PARM_DESC(ptr_size,
ÂÂÂÂÂÂÂÂ "Pointing device width, height in pixels (default 800,600)");
-static unsigned int no_ptr_dev;
-module_param(no_ptr_dev, uint, 0);
+static bool no_ptr_dev;
+module_param(no_ptr_dev, bool, 0);
 MODULE_PARM_DESC(no_ptr_dev,
ÂÂÂÂÂÂÂÂ "If set then no virtual pointing device exposed to the guest");
-static unsigned int no_kbd_dev;
-module_param(no_kbd_dev, uint, 0);
+static bool no_kbd_dev;
+module_param(no_kbd_dev, bool, 0);
 MODULE_PARM_DESC(no_kbd_dev,
ÂÂÂÂÂÂÂÂ "If set then no virtual keyboard device exposed to the guest");
default to true, but allow it to be set off?
static bool kbd_dev = true;
module_param(kbd_dev, bool, 0);
Juergen, what do you think about the above?
that boolean parameters don't need a value, meaning "true" in that case.
This would make no sense for "kbd_dev" as it wouldn't change the
default.
Juergen