Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95fe8347 authored by Haojian Zhuang's avatar Haojian Zhuang Committed by Linus Torvalds
Browse files

drivers/rtc/rtc-pxa.c: avoid cpuid checking



pxa-rtc is widely used in pxa27x/pxa3xx/pxa93x/pxa95x. Checking cpuid in
pxa-rtc driver is unnecessary since we assign on-chip device in soc files.

Signed-off-by: default avatarHaojian Zhuang <haojian.zhuang@marvell.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c8a6046e
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -454,10 +454,7 @@ static struct platform_driver pxa_rtc_driver = {

static int __init pxa_rtc_init(void)
{
	if (cpu_is_pxa27x() || cpu_is_pxa3xx())
	return platform_driver_probe(&pxa_rtc_driver, pxa_rtc_probe);

	return -ENODEV;
}

static void __exit pxa_rtc_exit(void)