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

rtc-parisc: rename p pointer to rtc

Signed-off-by: Ndann frazier <dannf@hp.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Grant Grundler <grundler@parisc-linux.org>
Cc: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 a8c20cd3
......@@ -38,23 +38,23 @@ static const struct rtc_class_ops parisc_rtc_ops = {
static int __init parisc_rtc_probe(struct platform_device *dev)
{
struct rtc_device *p;
struct rtc_device *rtc;
p = rtc_device_register("rtc-parisc", &dev->dev, &parisc_rtc_ops,
THIS_MODULE);
if (IS_ERR(p))
return PTR_ERR(p);
rtc = rtc_device_register("rtc-parisc", &dev->dev, &parisc_rtc_ops,
THIS_MODULE);
if (IS_ERR(rtc))
return PTR_ERR(rtc);
platform_set_drvdata(dev, p);
platform_set_drvdata(dev, rtc);
return 0;
}
static int __exit parisc_rtc_remove(struct platform_device *dev)
{
struct rtc_device *p = platform_get_drvdata(dev);
struct rtc_device *rtc = platform_get_drvdata(dev);
rtc_device_unregister(p);
rtc_device_unregister(rtc);
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册