From 97ee5519d5c449120914ffcf3e4fa78bd4639bb4 Mon Sep 17 00:00:00 2001 From: Tejun Heo Date: Tue, 1 Feb 2011 11:42:42 +0100 Subject: [PATCH] --- yaml --- r: 234954 b: refs/heads/master c: 44d2588e1102b4e35022d03b7f124dd6ea013ce8 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/acpi/osl.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 8e73eeb47356..561518b5f6c5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d37adaa1596246929f7ab49843fd124595506175 +refs/heads/master: 44d2588e1102b4e35022d03b7f124dd6ea013ce8 diff --git a/trunk/drivers/acpi/osl.c b/trunk/drivers/acpi/osl.c index b0931818cf98..60a80cbfcdc7 100644 --- a/trunk/drivers/acpi/osl.c +++ b/trunk/drivers/acpi/osl.c @@ -1578,9 +1578,9 @@ acpi_status __init acpi_os_initialize(void) acpi_status __init acpi_os_initialize1(void) { - kacpid_wq = create_workqueue("kacpid"); - kacpi_notify_wq = create_workqueue("kacpi_notify"); - kacpi_hotplug_wq = create_workqueue("kacpi_hotplug"); + kacpid_wq = alloc_workqueue("kacpid", 0, 1); + kacpi_notify_wq = alloc_workqueue("kacpi_notify", 0, 1); + kacpi_hotplug_wq = alloc_workqueue("kacpi_hotplug", 0, 1); BUG_ON(!kacpid_wq); BUG_ON(!kacpi_notify_wq); BUG_ON(!kacpi_hotplug_wq);