Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139640
b: refs/heads/master
c: b277c88
h: refs/heads/master
v: v3
  • Loading branch information
Erik Ekman authored and Linus Torvalds committed Apr 3, 2009
1 parent 1ed4a47 commit 1b055d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8c655918b15691d3a97f4e9a7c3c0a6ac992e297
refs/heads/master: b277c884f7856ce0791b1e72079023a86767981b
7 changes: 3 additions & 4 deletions trunk/drivers/pnp/pnpbios/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ struct pnp_dev_node_info node_info;

#ifdef CONFIG_HOTPLUG

static int unloading = 0;
static struct completion unload_sem;

/*
Expand Down Expand Up @@ -158,7 +157,7 @@ static int pnp_dock_thread(void *unused)
int docked = -1, d = 0;

set_freezable();
while (!unloading) {
while (1) {
int status;

/*
Expand Down Expand Up @@ -586,8 +585,8 @@ static int __init pnpbios_thread_init(void)
struct task_struct *task;
init_completion(&unload_sem);
task = kthread_run(pnp_dock_thread, NULL, "kpnpbiosd");
if (!IS_ERR(task))
unloading = 0;
if (IS_ERR(task))
return PTR_ERR(task);
}
#endif
return 0;
Expand Down

0 comments on commit 1b055d6

Please sign in to comment.