Commit 521b600b authored by Andrew Morton's avatar Andrew Morton Committed by Greg Kroah-Hartman

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: default avatarDuncan Sands <baldrick@free.fr>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3ccf25ce
...@@ -1001,7 +1001,7 @@ static int usbatm_do_heavy_init(void *arg) ...@@ -1001,7 +1001,7 @@ static int usbatm_do_heavy_init(void *arg)
daemonize(instance->driver->driver_name); daemonize(instance->driver->driver_name);
allow_signal(SIGTERM); allow_signal(SIGTERM);
instance->thread_pid = get_current()->pid; instance->thread_pid = current->pid;
complete(&instance->thread_started); complete(&instance->thread_started);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment