Re: [linux-usb-devel] [PATCH] 2.5.44 sa-1111 ohci hcd

2002-11-05 Thread Greg KH
On Mon, Oct 28, 2002 at 04:13:01PM -0800, Christopher Hoover wrote: > [ Sorry; this time without patch mangling ... ] > > > Dereferencing hcd.pdev will always oops with SA-. It has to be > treated as a cookie, not a pointer in any common OHCI HCD code. > > Apparently we need a clean way to

Re: [linux-usb-devel] [PATCH] 2.5.44 sa-1111 ohci hcd

2002-11-02 Thread David Brownell
David, any opinions on this patch? David? Sorry -- I had no problems with it, as I recall, that's why I didn't comment ... :) - Dave --- This sf.net email is sponsored by: See the NEW Palm Tungsten T handheld. Power & Color in a compa

RE: [linux-usb-devel] [PATCH] 2.5.44 sa-1111 ohci hcd

2002-11-02 Thread Christopher Hoover
> Why? What is that needed for? Oh wait, you don't have a pci device, > right? Correct. >So where in the device tree does the sa111 controller show up? >What type of bus is it on? rmk and pat worked this out: /sys/bus/system/devices/SA0 /sys/bus/RAB/devices/0400

Re: [linux-usb-devel] [PATCH] 2.5.44 sa-1111 ohci hcd

2002-11-01 Thread Greg KH
On Mon, Oct 28, 2002 at 04:13:01PM -0800, Christopher Hoover wrote: > [ Sorry; this time without patch mangling ... ] > > > Dereferencing hcd.pdev will always oops with SA-. It has to be > treated as a cookie, not a pointer in any common OHCI HCD code. > > Apparently we need a clean way to

[linux-usb-devel] [PATCH] 2.5.44 sa-1111 ohci hcd

2002-10-28 Thread Christopher Hoover
[ Sorry; this time without patch mangling ... ] Dereferencing hcd.pdev will always oops with SA-. It has to be treated as a cookie, not a pointer in any common OHCI HCD code. Apparently we need a clean way to go from struct device * to struct ohci_hcd *. I added dev_to_ohci that does the o

[linux-usb-devel] [PATCH] 2.5.44 SA-1111 ohci-hcd

2002-10-28 Thread Christopher Hoover
Dereferencing hcd.pdev will always oops with SA-. It has to be treated as a cookie, not a pointer in any common OHCI HCD code. Apparently we need a clean way to go from struct device * to struct ohci_hcd *. I added dev_to_ohci that does the obvious thing and added separate implementations f