mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-15 21:47:40 +07:00
[PATCH] fix int vs. pm_message_t confusion in airo
Fix int vs. pm_message_t confusion in airo. Should change no code. Signed-off-by: Pavel Machek <pavel@suse.cz> Cc: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Andrew Morton <akpm@osdl.org>
This commit is contained in:
parent
feea1db26e
commit
1cc68ae0cf
@ -1209,7 +1209,7 @@ struct airo_info {
|
|||||||
unsigned char __iomem *pciaux;
|
unsigned char __iomem *pciaux;
|
||||||
unsigned char *shared;
|
unsigned char *shared;
|
||||||
dma_addr_t shared_dma;
|
dma_addr_t shared_dma;
|
||||||
int power;
|
pm_message_t power;
|
||||||
SsidRid *SSID;
|
SsidRid *SSID;
|
||||||
APListRid *APList;
|
APListRid *APList;
|
||||||
#define PCI_SHARED_LEN 2*MPI_MAX_FIDS*PKTSIZE+RIDSIZE
|
#define PCI_SHARED_LEN 2*MPI_MAX_FIDS*PKTSIZE+RIDSIZE
|
||||||
@ -5499,9 +5499,9 @@ static int airo_pci_suspend(struct pci_dev *pdev, pm_message_t state)
|
|||||||
cmd.cmd=HOSTSLEEP;
|
cmd.cmd=HOSTSLEEP;
|
||||||
issuecommand(ai, &cmd, &rsp);
|
issuecommand(ai, &cmd, &rsp);
|
||||||
|
|
||||||
pci_enable_wake(pdev, state, 1);
|
pci_enable_wake(pdev, pci_choose_state(pdev, state), 1);
|
||||||
pci_save_state(pdev);
|
pci_save_state(pdev);
|
||||||
return pci_set_power_state(pdev, state);
|
return pci_set_power_state(pdev, pci_choose_state(pdev, state));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int airo_pci_resume(struct pci_dev *pdev)
|
static int airo_pci_resume(struct pci_dev *pdev)
|
||||||
@ -5512,7 +5512,7 @@ static int airo_pci_resume(struct pci_dev *pdev)
|
|||||||
|
|
||||||
pci_set_power_state(pdev, 0);
|
pci_set_power_state(pdev, 0);
|
||||||
pci_restore_state(pdev);
|
pci_restore_state(pdev);
|
||||||
pci_enable_wake(pdev, ai->power, 0);
|
pci_enable_wake(pdev, pci_choose_state(pdev, ai->power), 0);
|
||||||
|
|
||||||
if (ai->power > 1) {
|
if (ai->power > 1) {
|
||||||
reset_card(dev, 0);
|
reset_card(dev, 0);
|
||||||
@ -5541,7 +5541,7 @@ static int airo_pci_resume(struct pci_dev *pdev)
|
|||||||
}
|
}
|
||||||
writeConfigRid(ai, 0);
|
writeConfigRid(ai, 0);
|
||||||
enable_MAC(ai, &rsp, 0);
|
enable_MAC(ai, &rsp, 0);
|
||||||
ai->power = 0;
|
ai->power = PMSG_ON;
|
||||||
netif_device_attach(dev);
|
netif_device_attach(dev);
|
||||||
netif_wake_queue(dev);
|
netif_wake_queue(dev);
|
||||||
enable_interrupts(ai);
|
enable_interrupts(ai);
|
||||||
|
Loading…
Reference in New Issue
Block a user