mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
[PATCH] pm: more u32 vs. pm_message_t fixes
Few more u32 vs. pm_message_t fixes. Signed-off-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
e8af300c3b
commit
2a569579be
@ -1363,19 +1363,7 @@ mpt_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
u32 device_state;
|
||||
MPT_ADAPTER *ioc = pci_get_drvdata(pdev);
|
||||
|
||||
switch(state)
|
||||
{
|
||||
case 1: /* S1 */
|
||||
device_state=1; /* D1 */;
|
||||
break;
|
||||
case 3: /* S3 */
|
||||
case 4: /* S4 */
|
||||
device_state=3; /* D3 */;
|
||||
break;
|
||||
default:
|
||||
return -EAGAIN /*FIXME*/;
|
||||
break;
|
||||
}
|
||||
device_state=pci_choose_state(pdev, state);
|
||||
|
||||
printk(MYIOC_s_INFO_FMT
|
||||
"pci-suspend: pdev=0x%p, slot=%s, Entering operating state [D%d]\n",
|
||||
|
@ -84,7 +84,7 @@
|
||||
extern void mptscsih_remove(struct pci_dev *);
|
||||
extern void mptscsih_shutdown(struct pci_dev *);
|
||||
#ifdef CONFIG_PM
|
||||
extern int mptscsih_suspend(struct pci_dev *pdev, u32 state);
|
||||
extern int mptscsih_suspend(struct pci_dev *pdev, pm_message_t state);
|
||||
extern int mptscsih_resume(struct pci_dev *pdev);
|
||||
#endif
|
||||
extern int mptscsih_proc_info(struct Scsi_Host *host, char *buffer, char **start, off_t offset, int length, int func);
|
||||
|
@ -3259,7 +3259,7 @@ static void __devexit skge_remove(struct pci_dev *pdev)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int skge_suspend(struct pci_dev *pdev, u32 state)
|
||||
static int skge_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
{
|
||||
struct skge_hw *hw = pci_get_drvdata(pdev);
|
||||
int i, wol = 0;
|
||||
@ -3279,7 +3279,7 @@ static int skge_suspend(struct pci_dev *pdev, u32 state)
|
||||
}
|
||||
|
||||
pci_save_state(pdev);
|
||||
pci_enable_wake(pdev, state, wol);
|
||||
pci_enable_wake(pdev, pci_choose_state(pdev, state), wol);
|
||||
pci_disable_device(pdev);
|
||||
pci_set_power_state(pdev, pci_choose_state(pdev, state));
|
||||
|
||||
|
@ -1906,9 +1906,9 @@ typhoon_sleep(struct typhoon *tp, pci_power_t state, u16 events)
|
||||
*/
|
||||
netif_carrier_off(tp->dev);
|
||||
|
||||
pci_enable_wake(tp->pdev, pci_choose_state(pdev, state), 1);
|
||||
pci_enable_wake(tp->pdev, state, 1);
|
||||
pci_disable_device(pdev);
|
||||
return pci_set_power_state(pdev, pci_choose_state(pdev, state));
|
||||
return pci_set_power_state(pdev, state);
|
||||
}
|
||||
|
||||
static int
|
||||
@ -2274,7 +2274,7 @@ typhoon_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
goto need_resume;
|
||||
}
|
||||
|
||||
if(typhoon_sleep(tp, state, tp->wol_events) < 0) {
|
||||
if(typhoon_sleep(tp, pci_choose_state(pdev, state), tp->wol_events) < 0) {
|
||||
printk(KERN_ERR "%s: unable to put card to sleep\n", dev->name);
|
||||
goto need_resume;
|
||||
}
|
||||
|
@ -325,7 +325,7 @@ int pcie_port_device_register(struct pci_dev *dev)
|
||||
static int suspend_iter(struct device *dev, void *data)
|
||||
{
|
||||
struct pcie_port_service_driver *service_driver;
|
||||
u32 state = (u32)data;
|
||||
pm_message_t state = * (pm_message_t *) data;
|
||||
|
||||
if ((dev->bus == &pcie_port_bus_type) &&
|
||||
(dev->driver)) {
|
||||
@ -336,9 +336,9 @@ static int suspend_iter(struct device *dev, void *data)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pcie_port_device_suspend(struct pci_dev *dev, u32 state)
|
||||
int pcie_port_device_suspend(struct pci_dev *dev, pm_message_t state)
|
||||
{
|
||||
device_for_each_child(&dev->dev, (void *)state, suspend_iter);
|
||||
device_for_each_child(&dev->dev, &state, suspend_iter);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -2113,7 +2113,7 @@ static int savagefb_suspend (struct pci_dev* dev, pm_message_t state)
|
||||
printk(KERN_DEBUG "state: %u\n", state);
|
||||
|
||||
acquire_console_sem();
|
||||
fb_set_suspend(info, state);
|
||||
fb_set_suspend(info, pci_choose_state(dev, state));
|
||||
savage_disable_mmio(par);
|
||||
release_console_sem();
|
||||
|
||||
|
@ -4174,7 +4174,7 @@ static int cs_ioctl_mixdev(struct inode *inode, struct file *file, unsigned int
|
||||
list_for_each(entry, &cs46xx_devs)
|
||||
{
|
||||
card = list_entry(entry, struct cs_card, list);
|
||||
cs46xx_suspend(card, 0);
|
||||
cs46xx_suspend(card, PMSG_ON);
|
||||
}
|
||||
|
||||
}
|
||||
@ -5749,7 +5749,7 @@ static int cs46xx_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data)
|
||||
case PM_SUSPEND:
|
||||
CS_DBGOUT(CS_PM, 2, printk(KERN_INFO
|
||||
"cs46xx: PM suspend request\n"));
|
||||
if(cs46xx_suspend(card, 0))
|
||||
if(cs46xx_suspend(card, PMSG_SUSPEND))
|
||||
{
|
||||
CS_DBGOUT(CS_ERROR, 2, printk(KERN_INFO
|
||||
"cs46xx: PM suspend request refused\n"));
|
||||
@ -5779,7 +5779,7 @@ static int cs46xx_suspend_tbl(struct pci_dev *pcidev, pm_message_t state)
|
||||
struct cs_card *s = PCI_GET_DRIVER_DATA(pcidev);
|
||||
CS_DBGOUT(CS_PM | CS_FUNCTION, 2,
|
||||
printk(KERN_INFO "cs46xx: cs46xx_suspend_tbl request\n"));
|
||||
cs46xx_suspend(s, 0);
|
||||
cs46xx_suspend(s, state);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user