From: Bjorn Helgaas Date: Fri, 11 Jan 2013 22:30:52 +0000 (-0700) Subject: PCI: shpchp: Make shpchp_wq non-ordered X-Git-Tag: upstream/snapshot3+hdmi~5752^2~3^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10959d72d401cec2781ca636b07d692c625e1c91;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git PCI: shpchp: Make shpchp_wq non-ordered e24dcbef93 ("shpchp: update workqueue usage") was described as adding non-ordered shpchp_wq, but it actually made it an *ordered* workqueue. This patch changes shpchp_wq to be non-ordered, as described in the e24dcbef93 commit log and as was done for pciehp by a827ea307b ("pciehp: update workqueue usage"). Signed-off-by: Bjorn Helgaas Acked-by: Tejun Heo --- diff --git a/drivers/pci/hotplug/shpchp_core.c b/drivers/pci/hotplug/shpchp_core.c index b6de307..59ca86c 100644 --- a/drivers/pci/hotplug/shpchp_core.c +++ b/drivers/pci/hotplug/shpchp_core.c @@ -366,7 +366,7 @@ static int __init shpcd_init(void) { int retval = 0; - shpchp_wq = alloc_ordered_workqueue("shpchp", 0); + shpchp_wq = alloc_workqueue("shpchp", 0, 0); if (!shpchp_wq) return -ENOMEM;