Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38059
b: refs/heads/master
c: 7b566b1
h: refs/heads/master
i:
  38057: f2970be
  38055: 9783419
v: v3
  • Loading branch information
Antonino A. Daplas authored and Linus Torvalds committed Oct 3, 2006
1 parent 0cf30a2 commit b3cbbd5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b0b10324b85d0379a2eec4984e77b25299a97ed4
refs/heads/master: 7b566b1f7bdbbcfa8d11b8018c6dec5467f7c62b
6 changes: 5 additions & 1 deletion trunk/drivers/video/nvidia/nvidia.c
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,10 @@ static int nvidiafb_resume(struct pci_dev *dev)

if (par->pm_state != PM_EVENT_FREEZE) {
pci_restore_state(dev);
pci_enable_device(dev);

if (pci_enable_device(dev))
goto fail;

pci_set_master(dev);
}

Expand All @@ -993,6 +996,7 @@ static int nvidiafb_resume(struct pci_dev *dev)
fb_set_suspend (info, 0);
nvidiafb_blank(FB_BLANK_UNBLANK, info);

fail:
release_console_sem();
return 0;
}
Expand Down

0 comments on commit b3cbbd5

Please sign in to comment.