mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
drivers/rtc/rtc-mpc5121.c: use platform_{get,set}_drvdata()
Use the wrapper functions for getting and setting the driver data using platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev, so we can directly pass a struct platform_device. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Cc: Grant Likely <grant.likely@linaro.org> Cc: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
dfc657b133
commit
ad87a76647
@ -324,7 +324,7 @@ static int mpc5121_rtc_probe(struct platform_device *op)
|
||||
|
||||
device_init_wakeup(&op->dev, 1);
|
||||
|
||||
dev_set_drvdata(&op->dev, rtc);
|
||||
platform_set_drvdata(op, rtc);
|
||||
|
||||
rtc->irq = irq_of_parse_and_map(op->dev.of_node, 1);
|
||||
err = request_irq(rtc->irq, mpc5121_rtc_handler, 0,
|
||||
@ -382,7 +382,7 @@ out_dispose:
|
||||
|
||||
static int mpc5121_rtc_remove(struct platform_device *op)
|
||||
{
|
||||
struct mpc5121_rtc_data *rtc = dev_get_drvdata(&op->dev);
|
||||
struct mpc5121_rtc_data *rtc = platform_get_drvdata(op);
|
||||
struct mpc5121_rtc_regs __iomem *regs = rtc->regs;
|
||||
|
||||
/* disable interrupt, so there are no nasty surprises */
|
||||
|
Loading…
Reference in New Issue
Block a user