diff options
| author | Olof Johansson <olof@lixom.net> | 2013-01-27 22:07:11 -0800 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2013-01-27 22:07:20 -0800 | 
| commit | 6b914c998787d65022e80d6262dfd0edef58cadb (patch) | |
| tree | ec9d9605ae08e6e40664c4302a181979ab4fe1d3 /drivers/pci/hotplug/pciehp_ctrl.c | |
| parent | 1f87a404d02a96519284e1928445ca5cfe9667db (diff) | |
| parent | 949db153b6466c6f7cad5a427ecea94985927311 (diff) | |
| download | olio-linux-3.10-6b914c998787d65022e80d6262dfd0edef58cadb.tar.xz olio-linux-3.10-6b914c998787d65022e80d6262dfd0edef58cadb.zip  | |
Merge tag 'v3.8-rc5' into next/cleanup
Linux 3.8-rc5
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/pci/hotplug/pciehp_ctrl.c')
| -rw-r--r-- | drivers/pci/hotplug/pciehp_ctrl.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c index 27f44295a65..38f01867917 100644 --- a/drivers/pci/hotplug/pciehp_ctrl.c +++ b/drivers/pci/hotplug/pciehp_ctrl.c @@ -49,7 +49,7 @@ static int queue_interrupt_event(struct slot *p_slot, u32 event_type)  	info->p_slot = p_slot;  	INIT_WORK(&info->work, interrupt_event_handler); -	queue_work(pciehp_wq, &info->work); +	queue_work(p_slot->wq, &info->work);  	return 0;  } @@ -344,7 +344,7 @@ void pciehp_queue_pushbutton_work(struct work_struct *work)  		kfree(info);  		goto out;  	} -	queue_work(pciehp_wq, &info->work); +	queue_work(p_slot->wq, &info->work);   out:  	mutex_unlock(&p_slot->lock);  } @@ -377,7 +377,7 @@ static void handle_button_press_event(struct slot *p_slot)  		if (ATTN_LED(ctrl))  			pciehp_set_attention_status(p_slot, 0); -		queue_delayed_work(pciehp_wq, &p_slot->work, 5*HZ); +		queue_delayed_work(p_slot->wq, &p_slot->work, 5*HZ);  		break;  	case BLINKINGOFF_STATE:  	case BLINKINGON_STATE: @@ -439,7 +439,7 @@ static void handle_surprise_event(struct slot *p_slot)  	else  		p_slot->state = POWERON_STATE; -	queue_work(pciehp_wq, &info->work); +	queue_work(p_slot->wq, &info->work);  }  static void interrupt_event_handler(struct work_struct *work)  |