提交 a8c20cd3 编写于 作者: D dann frazier 提交者: Linus Torvalds

rtc-parisc: remove a couple unnecessary variables

Signed-off-by: Ndann frazier <dannf@hp.com>
Reviewed-by: NGrant Grundler <grundler@parisc-linux.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 cd875d47
......@@ -25,11 +25,7 @@ static int parisc_get_time(struct device *dev, struct rtc_time *tm)
static int parisc_set_time(struct device *dev, struct rtc_time *tm)
{
int ret;
ret = set_rtc_time(tm);
if (ret < 0)
if (set_rtc_time(tm) < 0)
return -EOPNOTSUPP;
return 0;
......@@ -46,10 +42,8 @@ static int __init parisc_rtc_probe(struct platform_device *dev)
p = rtc_device_register("rtc-parisc", &dev->dev, &parisc_rtc_ops,
THIS_MODULE);
if (IS_ERR(p)) {
int err = PTR_ERR(p);
return err;
}
if (IS_ERR(p))
return PTR_ERR(p);
platform_set_drvdata(dev, p);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册