PATCH to drivers/sound/cs4232.c for linux-2.1.126.tar.gz and

David Dyck (dcd@tc.fluke.com)
Wed, 4 Nov 1998 12:39:56 -0800 (PST)


After applying pre-patch-2.1.127-7.gz to linux-2.1.126.tar.gz
I needed the following patch to drivers/sound/cs4232.c
to get it to compile
(patch is relative to drivers/sound directory)

--- cs4232.c.127 Wed Nov 4 09:50:01 1998
+++ cs4232.c Wed Nov 4 10:11:49 1998
@@ -96,9 +96,8 @@
static void sleep(unsigned howlong)
{
current->state = TASK_INTERRUPTIBLE;
- current->timeout = jiffies + howlong;
+ schedule_timeout(howlong);
schedule();
- current->timeout = 0;
}

int probe_cs4232(struct address_info *hw_config)

-
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/