From patchwork Wed Sep 19 19:09:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [rtc-linux, 1/1] drivers/rtc/rtc-ab8500.c: Revoke Device Tree enablement From: Lee Jones X-Patchwork-Id: 185182 Message-Id: <20120919190952.GB2753@gmail.com> To: Samuel Ortiz Cc: Alessandro Zummo , linus.walleij@stericsson.com, rtc-linux@googlegroups.com, Linus Walleij , linux-kernel@vger.kernel.org, arnd@arndb.de, STEricsson_nomadik_linux@list.st.com, linux-arm-kernel@lists.infradead.org Date: Wed, 19 Sep 2012 21:09:52 +0200 > > > Sam: do you agree? > I'd love to see the patch first :) > Could you please bounce it to me ? I'll help. :) Author: Lee Jones Date: Thu Aug 9 13:28:19 2012 +0100 drivers/rtc/rtc-ab8500.c: Revoke Device Tree enablement All AB8500 devices are now registered via MFD core, so Device Tree capability is no longer required for probing. Here we pull the DT match table to ensure we're no longer probed during Device Tree start-up. CC: Alessandro Zummo CC: rtc-linux@googlegroups.com Acked-by: Linus Walleij Signed-off-by: Lee Jones diff --git a/drivers/rtc/rtc-ab8500.c b/drivers/rtc/rtc-ab8500.c index bf3c2f6..2e5970f 100644 --- a/drivers/rtc/rtc-ab8500.c +++ b/drivers/rtc/rtc-ab8500.c @@ -462,16 +462,10 @@ static int __devexit ab8500_rtc_remove(struct platform_device *pdev) return 0; } -static const struct of_device_id ab8500_rtc_match[] = { - { .compatible = "stericsson,ab8500-rtc", }, - {} -}; - static struct platform_driver ab8500_rtc_driver = { .driver = { .name = "ab8500-rtc", .owner = THIS_MODULE, - .of_match_table = ab8500_rtc_match, }, .probe = ab8500_rtc_probe, .remove = __devexit_p(ab8500_rtc_remove),