aboutsummaryrefslogtreecommitdiff
path: root/drivers/usb/atm
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-10-10 14:42:46 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2006-10-17 14:46:33 -0700
commit521b600b58376b7c85a7c615ee32fae185c20b16 (patch)
treef3b0965bdd5077db50daa7bdb9dd3b1031b13635 /drivers/usb/atm
parent3ccf25ce185d4798e66a91812a7622f7fe6987df (diff)
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>
Diffstat (limited to 'drivers/usb/atm')
-rw-r--r--drivers/usb/atm/usbatm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/atm/usbatm.c b/drivers/usb/atm/usbatm.c
index ab091fa4c86..ec63b0ee074 100644
--- a/drivers/usb/atm/usbatm.c
+++ b/drivers/usb/atm/usbatm.c
@@ -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);