diff options
author | dann frazier <dannf@hp.com> | 2009-03-31 18:24:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-01 11:59:25 -0400 |
commit | b250c96ea9d7bc0b9ac3ff6e878b254b0b0b6abc (patch) | |
tree | 327e396f437150e334859e3ac9fde55c78af8824 /drivers/rtc | |
parent | a8c20cd3f7e2e223898c53adfb74420db5d9ac47 (diff) |
rtc-parisc: rename p pointer to rtc
Signed-off-by: dann 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: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-parisc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/rtc/rtc-parisc.c b/drivers/rtc/rtc-parisc.c index c29e91814c9a..b966f56da976 100644 --- a/drivers/rtc/rtc-parisc.c +++ b/drivers/rtc/rtc-parisc.c | |||
@@ -38,23 +38,23 @@ static const struct rtc_class_ops parisc_rtc_ops = { | |||
38 | 38 | ||
39 | static int __init parisc_rtc_probe(struct platform_device *dev) | 39 | static int __init parisc_rtc_probe(struct platform_device *dev) |
40 | { | 40 | { |
41 | struct rtc_device *p; | 41 | struct rtc_device *rtc; |
42 | 42 | ||
43 | p = rtc_device_register("rtc-parisc", &dev->dev, &parisc_rtc_ops, | 43 | rtc = rtc_device_register("rtc-parisc", &dev->dev, &parisc_rtc_ops, |
44 | THIS_MODULE); | 44 | THIS_MODULE); |
45 | if (IS_ERR(p)) | 45 | if (IS_ERR(rtc)) |
46 | return PTR_ERR(p); | 46 | return PTR_ERR(rtc); |
47 | 47 | ||
48 | platform_set_drvdata(dev, p); | 48 | platform_set_drvdata(dev, rtc); |
49 | 49 | ||
50 | return 0; | 50 | return 0; |
51 | } | 51 | } |
52 | 52 | ||
53 | static int __exit parisc_rtc_remove(struct platform_device *dev) | 53 | static int __exit parisc_rtc_remove(struct platform_device *dev) |
54 | { | 54 | { |
55 | struct rtc_device *p = platform_get_drvdata(dev); | 55 | struct rtc_device *rtc = platform_get_drvdata(dev); |
56 | 56 | ||
57 | rtc_device_unregister(p); | 57 | rtc_device_unregister(rtc); |
58 | 58 | ||
59 | return 0; | 59 | return 0; |
60 | } | 60 | } |