From: Marcel Holtmann <marcel@holtmann.org>
To: Terence Rudkin <trexx@pobox.com>
Cc: Olivier Bornet <Olivier.Bornet@puck.ch>,
BlueZ Mailing List <bluez-users@lists.sourceforge.net>
Subject: Re: [Bluez-users] Logitech Bluetooth Mx900+keyboard support.
Date: Wed, 28 Jan 2004 20:16:57 +0100 [thread overview]
Message-ID: <1075317417.26729.37.camel@pegasus> (raw)
In-Reply-To: <1075315567.1793.44.camel@localhost.localdomain>
[-- Attachment #1: Type: text/plain, Size: 217 bytes --]
Hi Terence,
> > I used the devfs path, because my Debian Sid has no default device node
> > for it. What is your system?
> The most recent is Fedora, with the 2.6.1 kernel
please try this patch.
Regards
Marcel
[-- Attachment #2: patch --]
[-- Type: text/x-patch, Size: 820 bytes --]
Index: hid2hci.c
===================================================================
RCS file: /cvsroot/bluez/utils2/hid/hid2hci.c,v
retrieving revision 1.3
diff -u -r1.3 hid2hci.c
--- hid2hci.c 6 Jan 2004 17:45:11 -0000 1.3
+++ hid2hci.c 28 Jan 2004 16:35:45 -0000
@@ -76,7 +76,7 @@
#define USB_DIR_OUT 0x00
-static char hidpath[PATH_MAX + 1] = "/dev/usb/hid";
+static char hidpath[PATH_MAX + 1] = "/dev/usb";
struct hiddev_devinfo {
unsigned int bustype;
@@ -211,8 +211,12 @@
sprintf(devname, "%s/hiddev%d", hidpath, i);
fd = open(devname, O_RDWR);
- if (fd < 0)
- continue;
+ if (fd < 0) {
+ sprintf(devname, "%s/hid/hiddev%d", hidpath, i);
+ fd = open(devname, O_RDWR);
+ if (fd < 0)
+ continue;
+ }
memset(&dinfo, 0, sizeof(dinfo));
err = ioctl(fd, HIDIOCGDEVINFO, &dinfo);
next prev parent reply other threads:[~2004-01-28 19:16 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-01-18 20:20 [Bluez-users] Logitech Bluetooth Mx900+keyboard support Terence Rudkin
2004-01-18 20:44 ` Marcel Holtmann
2004-01-18 21:30 ` Michal Semler (volny.cz)
2004-01-18 22:11 ` Marcel Holtmann
2004-01-18 23:01 ` Terence Rudkin
2004-01-19 2:54 ` Terence Rudkin
2004-01-19 12:22 ` Marcel Holtmann
2004-01-20 3:09 ` Terence Rudkin
2004-01-20 8:12 ` Olivier Bornet
2004-01-20 11:25 ` Marcel Holtmann
2004-01-27 20:15 ` Terence Rudkin
2004-01-28 8:00 ` Marcel Holtmann
2004-01-28 16:18 ` Terence Rudkin
2004-01-28 16:32 ` Marcel Holtmann
2004-01-28 18:46 ` Terence Rudkin
2004-01-28 19:16 ` Marcel Holtmann [this message]
2004-01-28 21:44 ` Terence Rudkin
2004-01-29 5:39 ` Marcel Holtmann
2004-01-29 3:29 ` Terence Rudkin
2004-01-29 13:12 ` T3 Was " Gareth Reakes
2004-01-31 19:34 ` Terence Rudkin
2004-01-29 19:41 ` Charles Bueche
2004-01-29 19:52 ` Marcel Holtmann
2004-01-20 11:27 ` Marcel Holtmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1075317417.26729.37.camel@pegasus \
--to=marcel@holtmann.org \
--cc=Olivier.Bornet@puck.ch \
--cc=bluez-users@lists.sourceforge.net \
--cc=trexx@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.