diff options
author | Denis V. Lunev <den@openvz.org> | 2008-04-29 04:02:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:21 -0400 |
commit | cdefa185dda6b2b267f088a7477e96d845bdc6c1 (patch) | |
tree | 95447a4c46352d6a353074873c11446e7c3c657f /drivers/usb/host/sl811-hcd.c | |
parent | a973909fc32be90884280b7a8cd2f2e093c97890 (diff) |
usb: use non-racy method for proc entries creation
Use proc_create()/proc_create_data() to make sure that ->proc_fops and ->data
be setup before gluing PDE to main tree.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/host/sl811-hcd.c')
-rw-r--r-- | drivers/usb/host/sl811-hcd.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index 3fd7a0c12078..426575247b23 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
@@ -1506,15 +1506,7 @@ static const char proc_filename[] = "driver/sl811h"; | |||
1506 | 1506 | ||
1507 | static void create_debug_file(struct sl811 *sl811) | 1507 | static void create_debug_file(struct sl811 *sl811) |
1508 | { | 1508 | { |
1509 | struct proc_dir_entry *pde; | 1509 | sl811->pde = proc_create_data(proc_filename, 0, NULL, &proc_ops, sl811); |
1510 | |||
1511 | pde = create_proc_entry(proc_filename, 0, NULL); | ||
1512 | if (pde == NULL) | ||
1513 | return; | ||
1514 | |||
1515 | pde->proc_fops = &proc_ops; | ||
1516 | pde->data = sl811; | ||
1517 | sl811->pde = pde; | ||
1518 | } | 1510 | } |
1519 | 1511 | ||
1520 | static void remove_debug_file(struct sl811 *sl811) | 1512 | static void remove_debug_file(struct sl811 *sl811) |