Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 133312
b: refs/heads/master
c: a29b99e
h: refs/heads/master
v: v3
  • Loading branch information
Magnus Damm authored and Paul Mundt committed Mar 10, 2009
1 parent 128e0f6 commit 140f376
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 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: 508407149a7f927c4b65a20e0a08a2a94dc769c6
refs/heads/master: a29b99eccecefe5026713b226f66f117c8837ad5
29 changes: 25 additions & 4 deletions trunk/drivers/input/keyboard/sh_keysc.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ static int __devinit sh_keysc_probe(struct platform_device *pdev)
pdata->scan_timing, priv->iomem_base + KYCR1_OFFS);
iowrite16(0, priv->iomem_base + KYOUTDR_OFFS);
iowrite16(KYCR2_IRQ_LEVEL, priv->iomem_base + KYCR2_OFFS);

device_init_wakeup(&pdev->dev, 1);
return 0;
err5:
free_irq(irq, pdev);
Expand Down Expand Up @@ -253,17 +255,36 @@ static int __devexit sh_keysc_remove(struct platform_device *pdev)
return 0;
}

static int sh_keysc_suspend(struct device *dev)
{
struct platform_device *pdev;
struct sh_keysc_priv *priv;
unsigned short value;

pdev = container_of(dev, struct platform_device, dev);
priv = platform_get_drvdata(pdev);

value = ioread16(priv->iomem_base + KYCR1_OFFS);

#define sh_keysc_suspend NULL
#define sh_keysc_resume NULL
if (device_may_wakeup(dev))
value |= 0x80;
else
value &= ~0x80;

iowrite16(value, priv->iomem_base + KYCR1_OFFS);
return 0;
}

static struct dev_pm_ops sh_keysc_dev_pm_ops = {
.suspend = sh_keysc_suspend,
};

struct platform_driver sh_keysc_device_driver = {
.probe = sh_keysc_probe,
.remove = __devexit_p(sh_keysc_remove),
.suspend = sh_keysc_suspend,
.resume = sh_keysc_resume,
.driver = {
.name = "sh_keysc",
.pm = &sh_keysc_dev_pm_ops,
}
};

Expand Down

0 comments on commit 140f376

Please sign in to comment.