Skip to content

Commit

Permalink
[PATCH] fix int vs. pm_message_t confusion in airo
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Pavel Machek authored and Jeff Garzik committed Jun 26, 2005
1 parent feea1db commit 1cc68ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/wireless/airo.c
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ struct airo_info {
unsigned char __iomem *pciaux;
unsigned char *shared;
dma_addr_t shared_dma;
int power;
pm_message_t power;
SsidRid *SSID;
APListRid *APList;
#define PCI_SHARED_LEN 2*MPI_MAX_FIDS*PKTSIZE+RIDSIZE
Expand Down Expand Up @@ -5499,9 +5499,9 @@ static int airo_pci_suspend(struct pci_dev *pdev, pm_message_t state)
cmd.cmd=HOSTSLEEP;
issuecommand(ai, &cmd, &rsp);

pci_enable_wake(pdev, state, 1);
pci_enable_wake(pdev, pci_choose_state(pdev, state), 1);
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)
Expand All @@ -5512,7 +5512,7 @@ static int airo_pci_resume(struct pci_dev *pdev)

pci_set_power_state(pdev, 0);
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) {
reset_card(dev, 0);
Expand Down Expand Up @@ -5541,7 +5541,7 @@ static int airo_pci_resume(struct pci_dev *pdev)
}
writeConfigRid(ai, 0);
enable_MAC(ai, &rsp, 0);
ai->power = 0;
ai->power = PMSG_ON;
netif_device_attach(dev);
netif_wake_queue(dev);
enable_interrupts(ai);
Expand Down

0 comments on commit 1cc68ae

Please sign in to comment.