Sorry to bug you about it and waste some of your time, i just wanted to
make sure it hadn't gotten lost someplace =)
Thanks for applying it, I know you've probably got better things to be
merging...
--
/jbm, but you can call me Josh. Really, you can!
"What's a metaphor?" "For sheep to graze in"
7
Actually, my first question is: are there any beanie funds left? ;^)
If you turn to page 43 of the HID spec, right after Maritime Simulation
Controls, you'll see the section for beverage containers and dispensers...
--
/jbm, but you can call me Josh. Really, you can!
"What's a metaphor?" "For she
Attached is the updated patch against 2.4.21-pre5
--
/jbm, but you can call me Josh. Really, you can!
"What's a metaphor?" "For sheep to graze in"
7958 1C1C 306A CDF8 4468 3EDE 1F93 F49D 5FA1 49C4
On Tue, 25 Feb 2003, Greg KH wrote:
> On Tue, Feb 25, 2003 at 01:24
On Tue, 25 Feb 2003, Oliver Neukum wrote:
> Am Dienstag, 25. Februar 2003 19:24 schrieb Josh Myer:
> > Attached are drivers for the KB Gear JamStudio Tablet. There are two
> > files, one is against 2.4.20, the other against 2.5.62. I'm hoping this
> > isn't too l
.orig' -x'.*' -urN linux-2.4.20/drivers/usb/kbtab.c
linux-2.4.20-jbm/drivers/usb/kbtab.c
--- linux-2.4.20/drivers/usb/kbtab.c1969-12-31 19:00:00.0 -0500
+++ linux-2.4.20-jbm/drivers/usb/kbtab.c2003-02-22 03:06:36.0 -0500
@@ -0,0 +1,179 @@
+#include
+#inc
t.o and
linux-2.5.62-jbm/drivers/usb/input/hid-input.o differ
Binary files linux-2.5.62/drivers/usb/input/hid.o and
linux-2.5.62-jbm/drivers/usb/input/hid.o differ
diff -x '*~' -x '*.orig' -x'.*' -uN linux-2.5.62/drivers/usb/input/kbtab.c
linux-2.5.62-jbm/drivers/
On Mon, 25 Nov 2002, Randy.Dunlap wrote:
> On Mon, 25 Nov 2002, Johannes Erdfelt wrote:
> | Why not just create a macro?
> |
> | #ifdef LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
> | #define usb_submit_urb(urb, flags) usb_submit_urb(urb)
> | #endif
> |
> | Of course, the usual macro gotchas are im
On Mon, 25 Nov 2002, Greg KH wrote:
> On Mon, Nov 25, 2002 at 09:30:49PM -0600, Josh Myer wrote:
> > This is probably a stupid question. Any hints on how to elegantly deal
> > with 2.4 vs 2.5 usb_submit_urb arguments? For the moment (hack hack hack)
> > i've got[1]:
>
This is probably a stupid question. Any hints on how to elegantly deal
with 2.4 vs 2.5 usb_submit_urb arguments? For the moment (hack hack hack)
i've got[1]:
#ifdef EV_SYN
if(usb_submit_urb(kbtab->irq, GFP_KERNEL))
return -EIO;
#else
if(usb_submit_urb(kbtab->irq))
return -EIO;
#endif
Real quick question: what version of 2.5 did we switch to input_sync vs
input_event? I'm going to be submitting my kbgear tablet driver shortly
and i'd like to support both versions from the same file...
TIA for any info,
--
/jbm, but you can call me Josh. Really, you can!
"What's a metaphor?" "F
On Wed, 13 Nov 2002, David Brownell wrote:
> Sounds like your CDC hardware isn't as fast as your CATC hardware, or
> else the CDC code is doing some strange things to slow transfers down.
> You're getting half the throughput you should get on 10BaseT!
^^^
Dave, yo
Attached patch is the result of:
dignity:~/src/linux-2.5.44 $ for x in `rgrep -l "FILL_.*URB" *`;
do cp -v $x $x.backup;
cat $x.backup | perl -pe 's/FILL_CONTROL_URB/usb_fill_control_urb/g;
s/FILL_BULK_URB/usb_fill_bulk_urb/g;
s/FILL_INT_URB/usb_fill_int_urb/g;' > $x;
done
and a manual removal
In ush.h, there's a FIXME for the URB transfer flags. This patch is
basically a global search and replace to change those all from USB_ to
URB_.
It touches a few things that aren't directly USB-related, and so should
probably be passed by those authors, but I figured i should put it here to
get fe
(l-k removed because, well, nobody there seemed to care)
On Fri, 25 Oct 2002, Greg KH wrote:
> On Fri, Oct 25, 2002 at 02:04:25AM -0500, Josh Myer wrote:
> Please use tabs instead of spaces. Documentation/CodingStyle has these
> rules if you haven't read it yet.
>
Do
You know, that might not hurt. Applied.
I didn't just cut and paste that bit. Really... *innocent whistling*
--
/jbm, but you can call me Josh. Really, you can!
this signature brought to you by the phrase,
"this signature brought to you by the phrase,
'...' and contributions by viewers
0
+++ linux-2.4.19-kb/drivers/usb/kbpad.c 2002-10-25 02:03:32.0 -0400
@@ -0,0 +1,174 @@
+#include
+#include
+#include
+#include
+#include
+#include
+
+/*
+ * Version Information
+ */
+#define DRIVER_VERSION "v0.0.1"
+#define DRIVER_AUTHOR "Josh Myer
16 matches
Mail list logo