From: Simon Glass Date: Sun, 18 Oct 2015 21:55:30 +0000 (-0600) Subject: rtc: mc146818: Use probe() to set up the device X-Git-Tag: v2016.01-rc1~298^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b26eb88658b9fbb87c5bae22cede05de3124abb7;hp=1bcb5c3a6cbaaf29d03bd58d068a7d42042476d5;p=platform%2Fkernel%2Fu-boot.git rtc: mc146818: Use probe() to set up the device At present this driver uses bind() to set up the device. The bind() method should not touch the hardware, so move the init code to probe(). Signed-off-by: Simon Glass --- diff --git a/drivers/rtc/mc146818.c b/drivers/rtc/mc146818.c index 9e94a80..da804d5 100644 --- a/drivers/rtc/mc146818.c +++ b/drivers/rtc/mc146818.c @@ -225,7 +225,7 @@ static int rtc_mc146818_write8(struct udevice *dev, unsigned int reg, int val) return 0; } -static int rtc_mc146818_bind(struct udevice *dev) +static int rtc_mc146818_probe(struct udevice *dev) { mc146818_init(); @@ -249,7 +249,7 @@ U_BOOT_DRIVER(rtc_mc146818) = { .name = "rtc_mc146818", .id = UCLASS_RTC, .of_match = rtc_mc146818_ids, - .bind = rtc_mc146818_bind, + .probe = rtc_mc146818_probe, .ops = &rtc_mc146818_ops, };