dect
/
linux-2.6
Archived
13
0
Fork 0

USB: fix usbatm tiny race

ia64:

drivers/usb/atm/usbatm.c: In function `usbatm_do_heavy_init':
drivers/usb/atm/usbatm.c:1004: warning: implicit declaration of function `get_current'
drivers/usb/atm/usbatm.c:1004: error: invalid type argument of `->'

Signed-off-by: Duncan Sands <baldrick@free.fr>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Andrew Morton 2006-10-10 14:42:46 -07:00 committed by Greg Kroah-Hartman
parent 3ccf25ce18
commit 521b600b58
1 changed files with 1 additions and 1 deletions

View File

@ -1001,7 +1001,7 @@ static int usbatm_do_heavy_init(void *arg)
daemonize(instance->driver->driver_name);
allow_signal(SIGTERM);
instance->thread_pid = get_current()->pid;
instance->thread_pid = current->pid;
complete(&instance->thread_started);