Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120
b: refs/heads/master
c: 9bfd354
h: refs/heads/master
v: v3
  • Loading branch information
Pavel Machek authored and Linus Torvalds committed Apr 16, 2005
1 parent 5619ea1 commit ee9b69a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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: 0370affeec3e751412e917aab931d8ba52680578
refs/heads/master: 9bfd354b1b9c2f4faee121892bdfbc1490b51ab5
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/corgi_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static void corgibl_blank(int blank)
}

#ifdef CONFIG_PM
static int corgibl_suspend(struct device *dev, u32 state, u32 level)
static int corgibl_suspend(struct device *dev, pm_message_t state, u32 level)
{
if (level == SUSPEND_POWER_DOWN)
corgibl_blank(FB_BLANK_POWERDOWN);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/pxafb.c
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data)
* Power management hooks. Note that we won't be called from IRQ context,
* unlike the blank functions above, so we may sleep.
*/
static int pxafb_suspend(struct device *dev, u32 state, u32 level)
static int pxafb_suspend(struct device *dev, pm_message_t state, u32 level)
{
struct pxafb_info *fbi = dev_get_drvdata(dev);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/sa1100fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ sa1100fb_freq_policy(struct notifier_block *nb, unsigned long val,
* Power management hooks. Note that we won't be called from IRQ context,
* unlike the blank functions above, so we may sleep.
*/
static int sa1100fb_suspend(struct device *dev, u32 state, u32 level)
static int sa1100fb_suspend(struct device *dev, pm_message_t state, u32 level)
{
struct sa1100fb_info *fbi = dev_get_drvdata(dev);

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/savage/savagefb_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2103,7 +2103,7 @@ static void __devexit savagefb_remove (struct pci_dev *dev)
}
}

static int savagefb_suspend (struct pci_dev* dev, u32 state)
static int savagefb_suspend (struct pci_dev* dev, pm_message_t state)
{
struct fb_info *info =
(struct fb_info *)pci_get_drvdata(dev);
Expand All @@ -2118,7 +2118,7 @@ static int savagefb_suspend (struct pci_dev* dev, u32 state)
release_console_sem();

pci_disable_device(dev);
pci_set_power_state(dev, state);
pci_set_power_state(dev, pci_choose_state(dev, state));

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/w100fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ static void w100fb_clear_buffer(void)


#ifdef CONFIG_PM
static int w100fb_suspend(struct device *dev, u32 state, u32 level)
static int w100fb_suspend(struct device *dev, pm_message_t state, u32 level)
{
if (level == SUSPEND_POWER_DOWN) {
struct fb_info *info = dev_get_drvdata(dev);
Expand Down

0 comments on commit ee9b69a

Please sign in to comment.