[patch] small driver fixes, 2.4.0-test1-ac7

From: Philip Blundell (Philip.Blundell@pobox.com)
Date: Sun Jun 11 2000 - 10:03:08 EST


This patch fixes a few undefined symbol references on ARM.

p.

--- linux/drivers/char/buz.c Sun May 14 17:10:09 2000
+++ linux/drivers/char/buz.c Sun Jun 11 15:44:32 2000
@@ -48,6 +48,7 @@
 #include <linux/types.h>
 #include <linux/wrapper.h>
 #include <linux/spinlock.h>
+#include <linux/vmalloc.h>
 
 #include <linux/videodev.h>
 
--- linux/drivers/net/tokenring/ibmtr.c Sun May 14 17:11:57 2000
+++ linux/drivers/net/tokenring/ibmtr.c Sun Jun 11 15:48:34 2000
@@ -1750,9 +1750,9 @@ static void tr_rx(struct net_device *dev
         /* Copy the payload... */
         for (;;) {
                 if (IPv4_p)
- chksum = csum_partial_copy_generic(bus_to_virt(rbufdata), data,
+ chksum = csum_partial_copy_nocheck(bus_to_virt(rbufdata), data,
                                                    length < rbuffer_len ? length : rbuffer_len,
- chksum, NULL, NULL);
+ chksum);
                 else
                         isa_memcpy_fromio(data, rbufdata, rbuffer_len);
                 rbuffer = ntohs(isa_readw(rbuffer));
--- linux/drivers/sound/maestro.c Sun Jun 4 17:07:49 2000
+++ linux/drivers/sound/maestro.c Sun Jun 4 17:40:19 2000
@@ -236,6 +236,7 @@
 #include <linux/reboot.h>
 #include <asm/uaccess.h>
 #include <asm/hardirq.h>
+#include <linux/bitops.h>
 
 #include <linux/pm.h>
 static int maestro_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *d);
--- linux/drivers/sound/msnd.c Sun Apr 30 11:02:40 2000
+++ linux/drivers/sound/msnd.c Sun Jun 11 15:46:30 2000
@@ -31,6 +31,7 @@
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/malloc.h>
+#include <linux/vmalloc.h>
 #include <linux/types.h>
 #include <linux/delay.h>
 #include <linux/mm.h>

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Jun 15 2000 - 21:00:23 EST