Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 126375
b: refs/heads/master
c: 97a1f95
h: refs/heads/master
i:
  126373: 2ba2888
  126371: 3303eba
  126367: 60dda74
v: v3
  • Loading branch information
Alessandro Zummo authored and Linus Torvalds committed Jan 6, 2009
1 parent 7a2117a commit 1d300b7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 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: 0e1492330cd2c95df2553335d7a77351021a938f
refs/heads/master: 97a1f9532ed41fd9cf5249fc1afae23fd47d1120
30 changes: 14 additions & 16 deletions trunk/drivers/rtc/rtc-ds1216.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <linux/platform_device.h>
#include <linux/bcd.h>

#define DRV_VERSION "0.1"
#define DRV_VERSION "0.2"

struct ds1216_regs {
u8 tsec;
Expand Down Expand Up @@ -101,7 +101,8 @@ static int ds1216_rtc_read_time(struct device *dev, struct rtc_time *tm)
tm->tm_year = bcd2bin(regs.year);
if (tm->tm_year < 70)
tm->tm_year += 100;
return 0;

return rtc_valid_tm(tm);
}

static int ds1216_rtc_set_time(struct device *dev, struct rtc_time *tm)
Expand Down Expand Up @@ -138,9 +139,8 @@ static const struct rtc_class_ops ds1216_rtc_ops = {
.set_time = ds1216_rtc_set_time,
};

static int __devinit ds1216_rtc_probe(struct platform_device *pdev)
static int __init ds1216_rtc_probe(struct platform_device *pdev)
{
struct rtc_device *rtc;
struct resource *res;
struct ds1216_priv *priv;
int ret = 0;
Expand All @@ -152,7 +152,10 @@ static int __devinit ds1216_rtc_probe(struct platform_device *pdev)
priv = kzalloc(sizeof *priv, GFP_KERNEL);
if (!priv)
return -ENOMEM;
priv->size = res->end - res->start + 1;

platform_set_drvdata(pdev, priv);

priv->size = resource_size(res);
if (!request_mem_region(res->start, priv->size, pdev->name)) {
ret = -EBUSY;
goto out;
Expand All @@ -163,22 +166,18 @@ static int __devinit ds1216_rtc_probe(struct platform_device *pdev)
ret = -ENOMEM;
goto out;
}
rtc = rtc_device_register("ds1216", &pdev->dev,
priv->rtc = rtc_device_register("ds1216", &pdev->dev,
&ds1216_rtc_ops, THIS_MODULE);
if (IS_ERR(rtc)) {
ret = PTR_ERR(rtc);
if (IS_ERR(priv->rtc)) {
ret = PTR_ERR(priv->rtc);
goto out;
}
priv->rtc = rtc;
platform_set_drvdata(pdev, priv);

/* dummy read to get clock into a known state */
ds1216_read(priv->ioaddr, dummy);
return 0;

out:
if (priv->rtc)
rtc_device_unregister(priv->rtc);
if (priv->ioaddr)
iounmap(priv->ioaddr);
if (priv->baseaddr)
Expand All @@ -187,7 +186,7 @@ static int __devinit ds1216_rtc_probe(struct platform_device *pdev)
return ret;
}

static int __devexit ds1216_rtc_remove(struct platform_device *pdev)
static int __exit ds1216_rtc_remove(struct platform_device *pdev)
{
struct ds1216_priv *priv = platform_get_drvdata(pdev);

Expand All @@ -203,13 +202,12 @@ static struct platform_driver ds1216_rtc_platform_driver = {
.name = "rtc-ds1216",
.owner = THIS_MODULE,
},
.probe = ds1216_rtc_probe,
.remove = __devexit_p(ds1216_rtc_remove),
.remove = __exit_p(ds1216_rtc_remove),
};

static int __init ds1216_rtc_init(void)
{
return platform_driver_register(&ds1216_rtc_platform_driver);
return platform_driver_probe(&ds1216_rtc_platform_driver, ds1216_rtc_probe);
}

static void __exit ds1216_rtc_exit(void)
Expand Down

0 comments on commit 1d300b7

Please sign in to comment.