summaryrefslogtreecommitdiff
path: root/sys/src/cmd/nusb/kb/kb.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-12-26 22:48:12 +0100
committercinap_lenrek <cinap_lenrek@gmx.de>2012-12-26 22:48:12 +0100
commit8f3595e05852e17af29c36445cb4939cf9ccb0cd (patch)
tree08389fc980b283064e1fcbeee9dbc60a256c99ce /sys/src/cmd/nusb/kb/kb.c
parent1c090cd04f94593378511df63e5c2a1710abc770 (diff)
nusb/kb: remove mouse acceleration -a flag
mouse acceleration can be done by software in the kernels devmouse device like: echo hwaccel off >/dev/mousectl echo accelerated 5 >/dev/mousectl it is hard to pass nusb/kb parameters anyway as it is started from nusbrc in bootfs.paq, so i remove the option.
Diffstat (limited to 'sys/src/cmd/nusb/kb/kb.c')
-rw-r--r--sys/src/cmd/nusb/kb/kb.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/src/cmd/nusb/kb/kb.c b/sys/src/cmd/nusb/kb/kb.c
index d819d41ba..86a4bba77 100644
--- a/sys/src/cmd/nusb/kb/kb.c
+++ b/sys/src/cmd/nusb/kb/kb.c
@@ -779,7 +779,7 @@ Err:
static void
usage(void)
{
- fprint(2, "usage: %s [-d] [-a n] devid\n", argv0);
+ fprint(2, "usage: %s [-d] devid\n", argv0);
threadexits("usage");
}
@@ -792,8 +792,6 @@ threadmain(int argc, char* argv[])
Usbdev *ud;
ARGBEGIN{
- case 'a':
- break;
case 'd':
debug++;
break;