aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--etc/Makefile.am4
-rw-r--r--kernel/mpio.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b205b45..bb9501c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);