Re: [linux-usb-devel] [PATCH] Driver for ATI/Philips USB RF remotes

2005-12-11 Thread Ville Syrjälä
On Mon, Dec 12, 2005 at 01:22:38AM -0500, Dmitry Torokhov wrote: > On Sunday 11 December 2005 23:40, Ville Syrjälä wrote: > > On Sun, Dec 11, 2005 at 10:28:46PM -0500, Dmitry Torokhov wrote: > > > > > > Do you disable autorepeat on purpose? Because if you set repeat delay and > > > period by yours

Re: [linux-usb-devel] [PATCH] Driver for ATI/Philips USB RF remotes

2005-12-11 Thread Dmitry Torokhov
On Sunday 11 December 2005 23:40, Ville Syrjälä wrote: > On Sun, Dec 11, 2005 at 10:28:46PM -0500, Dmitry Torokhov wrote: > > Hi, > > > > On Saturday 10 December 2005 13:30, Ville Syrjälä wrote: > > > + > > > + input_regs(idev, regs); > > > + input_event(idev, EV_REL, REL_X, (s8) data[1]); > > > +

Re: [linux-usb-devel] [PATCH] Driver for ATI/Philips USB RF remotes

2005-12-11 Thread Ville Syrjälä
On Sun, Dec 11, 2005 at 10:28:46PM -0500, Dmitry Torokhov wrote: > Hi, > > On Saturday 10 December 2005 13:30, Ville Syrjälä wrote: > > + > > + input_regs(idev, regs); > > + input_event(idev, EV_REL, REL_X, (s8) data[1]); > > + input_event(idev, EV_REL, REL_Y, (s8) data[2]); > > + input_sy

Re: [linux-usb-devel] [PATCH] Driver for ATI/Philips USB RF remotes

2005-12-11 Thread Dmitry Torokhov
Hi, On Saturday 10 December 2005 13:30, Ville Syrjälä wrote: > + > + input_regs(idev, regs); > + input_event(idev, EV_REL, REL_X, (s8) data[1]); > + input_event(idev, EV_REL, REL_Y, (s8) data[2]); > + input_sync(idev); > +} We have input_report_rel() > + > + input_regs(idev,

[linux-usb-devel] about web camera using usb video class

2005-12-11 Thread jinzhcheng
hello! Who can tell me which web camera use usb video class? I want to develop a device driver which using usb video class on my linux smartphone. Thanks! --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for p

[linux-usb-devel] [PATCH] hid-core: Zero-pad truncated reports

2005-12-11 Thread Adam Kropelin
When it detects a truncated report, hid-core emits a warning and then processes the report as usual. This is good because it allows buggy devices to still get data thru to userspace. However, the missing bytes of the report should be cleared before processing, otherwise userspace will be handed par

[linux-usb-devel] Re: 2.6.15-rc5-mm2: ehci_hcd crashes on load sometimes

2005-12-11 Thread Andrew Morton
"Rafael J. Wysocki" <[EMAIL PROTECTED]> wrote: > > The ehci_hcd driver causes problems like this: > > ehci_hcd :00:02.2: EHCI Host Controller > ehci_hcd :00:02.2: debug port 1 > ehci_hcd :00:02.2: new USB bus registered, assigned bus number 3 > ehci_hcd :00:02.2: irq 5, io mem 0xfe

Re: [linux-usb-devel] [PATCH 6/9] isdn4linux: Siemens Gigaset drivers - procfs interface

2005-12-11 Thread Greg KH
On Sun, Dec 11, 2005 at 07:20:38PM +0100, Hansjoerg Lipp wrote: > From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> > > This patch adds the procfs interface to the gigaset module. Are there existing userspace tools that rely on proc files for isdn control? If not, plea

[linux-usb-devel] [PATCH 0/9] isdn4linux: add drivers for Siemens Gigaset ISDN DECT PABX

2005-12-11 Thread Hansjoerg Lipp
The SourceForge project http://sourceforge.net/projects/gigaset307x/ has, over the last four years, developed Linux support for the Siemens Gigaset 3070/3075/4170/4175/SX205/SX255 family of ISDN DECT PABXes, connected to a PC either directly via USB or over a DECT link using the M101/M105 DECT data

[linux-usb-devel] [PATCH 9/9] isdn4linux: Siemens Gigaset drivers - M105 USB DECT adapter

2005-12-11 Thread Hansjoerg Lipp
From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> This patch adds the connection-specific module "usb_gigaset", the hardware driver for Gigaset base stations connected via the M105 USB DECT adapter. It contains the code for handling probe/disconnect, AT command/response

[linux-usb-devel] [PATCH 1/9] isdn4linux: Siemens Gigaset drivers - Kconfigs and Makefiles

2005-12-11 Thread Hansjoerg Lipp
From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> This patch prepares the kernel build infrastructure for addition of the Gigaset ISDN drivers. It creates a Makefile and Kconfig file for the Gigaset driver and hooks them into those of the isdn4linux subsystem. It also ad

[linux-usb-devel] [PATCH 8/9] isdn4linux: Siemens Gigaset drivers - isochronous data handler

2005-12-11 Thread Hansjoerg Lipp
From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> This patch adds the payload data handler for the connection-specific module "bas_gigaset". It contains the code for handling isochronous data transfers, HDLC framing and flow control. Signed-off-by: Hansjoerg Lipp <[EMAI

[linux-usb-devel] [PATCH 5/9] isdn4linux: Siemens Gigaset drivers - tty interface

2005-12-11 Thread Hansjoerg Lipp
From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> This patch adds the tty interface to the gigaset module. The tty interface provides direct access to the AT command set of the Gigaset devices. Signed-off-by: Hansjoerg Lipp <[EMAIL PROTECTED]> Signed-off-by: Tilman Schm

[linux-usb-devel] [PATCH 4/9] isdn4linux: Siemens Gigaset drivers - isdn4linux interface

2005-12-11 Thread Hansjoerg Lipp
From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> This patch adds the isdn4linux subsystem interface to the gigaset module. The isdn4linux subsystem interface handles requests from and notifications to the isdn4linux subsystem. Signed-off-by: Hansjoerg Lipp <[EMAIL PROT

[linux-usb-devel] [PATCH 6/9] isdn4linux: Siemens Gigaset drivers - procfs interface

2005-12-11 Thread Hansjoerg Lipp
From: Tilman Schmidt <[EMAIL PROTECTED]>, Hansjoerg Lipp <[EMAIL PROTECTED]> This patch adds the procfs interface to the gigaset module. The procfs interface provides access to status information and statistics about the Gigaset devices. If the drivers are built with the debugging option it also a

[linux-usb-devel] Re: 2.6.15-rc5-mm2: ehci_hcd crashes on load sometimes

2005-12-11 Thread Rafael J. Wysocki
The ehci_hcd driver causes problems like this: ehci_hcd :00:02.2: EHCI Host Controller ehci_hcd :00:02.2: debug port 1 ehci_hcd :00:02.2: new USB bus registered, assigned bus number 3 ehci_hcd :00:02.2: irq 5, io mem 0xfebfdc00 usb 2-2: Product: USB Receiver usb 2-2: Manufacturer:

Re: [linux-usb-devel] dm2 Device driver issue.

2005-12-11 Thread Alan Stern
On Fri, 9 Dec 2005, Paul Bonser wrote: > Ooh, thanks, that saves me the trouble of finding it myself :) > So is that what I'm going to have to tell others if they want to use > the driver, too? Or just provide a patch, I guess. > I guess the most important part (the inputs) still works without the