diff options
author | crunchy <crunchy> | 2002-12-09 10:02:11 +0000 |
---|---|---|
committer | crunchy <crunchy> | 2002-12-09 10:02:11 +0000 |
commit | d33c47876f0fc2d669d71292875b900ef1cb157b (patch) | |
tree | 9734667791a75c71a063bd321c9adadd6eff9806 | |
parent | e1d7a24827d4b28fd6a7a605b2d5ab153cfd40fd (diff) | |
download | mpiosh-d33c47876f0fc2d669d71292875b900ef1cb157b.tar.gz mpiosh-d33c47876f0fc2d669d71292875b900ef1cb157b.tar.bz2 mpiosh-d33c47876f0fc2d669d71292875b900ef1cb157b.zip |
update for kernel 2.4.20 or later
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | etc/Makefile.am | 4 | ||||
-rw-r--r-- | kernel/mpio.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-12-06 <crunchy@tzi.de> + + * kernel/mpio.c: 2.4.20 does not contain the typedef purb_t + anymore. Replaced it with 'struct urb *' + 2002-11-18 Andreas Buesching <crunchy@tzi.de> * configure.in: add a check for readline header files diff --git a/etc/Makefile.am b/etc/Makefile.am index 02f1137..63b0713 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -1 +1,3 @@ -sysconf_DATA = mpio/mpioshrc
\ No newline at end of file +sysconfdir=$(sysconfdir)/mpio + +sysconf_DATA = etc/mpioshrc
\ No newline at end of file diff --git a/kernel/mpio.c b/kernel/mpio.c index 54a336d..dedc4ca 100644 --- a/kernel/mpio.c +++ b/kernel/mpio.c @@ -569,7 +569,7 @@ void usb_show_string(struct usb_device *dev, char *id, int index) kfree(buf); } -void usb_dump_urb (purb_t purb) +void usb_dump_urb (struct urb * purb) { printk ("urb :%p\n", purb); printk ("next :%p\n", purb->next); |