[PATCH] drivers/{char|isdn}: work_struct-induced breakage

part 1 of fsck-knows-how-many

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Al Viro
2006-12-06 18:41:45 +00:00
committed by Linus Torvalds
parent 7a87b6c228
commit 3e577a80ea
6 changed files with 22 additions and 23 deletions

View File

@@ -267,12 +267,12 @@ adb_probe_task(void *x)
}
static void
__adb_probe_task(void *data)
__adb_probe_task(struct work_struct *bullshit)
{
adb_probe_task_pid = kernel_thread(adb_probe_task, NULL, SIGCHLD | CLONE_KERNEL);
}
static DECLARE_WORK(adb_reset_work, __adb_probe_task, NULL);
static DECLARE_WORK(adb_reset_work, __adb_probe_task);
int
adb_reset_bus(void)