Message ID | 1344527828-6283-3-git-send-email-lee.jones@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Aug 9, 2012 at 5:57 PM, Lee Jones <lee.jones@linaro.org> wrote: > 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 <a.zummo@towertech.it> > CC: rtc-linux@googlegroups.com > Signed-off-by: Lee Jones <lee.jones@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Yours, Linus Walleij
On Tue, Aug 14, 2012 at 10:32:02AM +0200, Linus Walleij wrote: > On Thu, Aug 9, 2012 at 5:57 PM, Lee Jones <lee.jones@linaro.org> wrote: > > > 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 <a.zummo@towertech.it> > > CC: rtc-linux@googlegroups.com > > Signed-off-by: Lee Jones <lee.jones@linaro.org> > > Acked-by: Linus Walleij <linus.walleij@linaro.org> I'm guessing we still need Alessandro's Ack?
On Fri, Aug 31, 2012 at 1:08 PM, Lee Jones <lee.jones@linaro.org> wrote: > On Tue, Aug 14, 2012 at 10:32:02AM +0200, Linus Walleij wrote: >> On Thu, Aug 9, 2012 at 5:57 PM, Lee Jones <lee.jones@linaro.org> wrote: >> >> > 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 <a.zummo@towertech.it> >> > CC: rtc-linux@googlegroups.com >> > Signed-off-by: Lee Jones <lee.jones@linaro.org> >> >> Acked-by: Linus Walleij <linus.walleij@linaro.org> > > I'm guessing we still need Alessandro's Ack? Well, usually we have Andrew Morton merging patches for RTC, so put him on CC. If I was the MFD maintainer I'd just merge this though, it's quite obvious. Sam: do you agree? Yours, Linus Walleij
On Sat, Sep 1, 2012 at 1:27 AM, Linus Walleij <linus.walleij@linaro.org> wrote: > On Fri, Aug 31, 2012 at 1:08 PM, Lee Jones <lee.jones@linaro.org> wrote: >> On Tue, Aug 14, 2012 at 10:32:02AM +0200, Linus Walleij wrote: >>> On Thu, Aug 9, 2012 at 5:57 PM, Lee Jones <lee.jones@linaro.org> wrote: >>> >>> > 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 <a.zummo@towertech.it> >>> > CC: rtc-linux@googlegroups.com >>> > Signed-off-by: Lee Jones <lee.jones@linaro.org> >>> >>> Acked-by: Linus Walleij <linus.walleij@linaro.org> >> >> I'm guessing we still need Alessandro's Ack? > > Well, usually we have Andrew Morton merging patches for RTC, so > put him on CC. > > If I was the MFD maintainer I'd just merge this though, it's quite > obvious. > > Sam: do you agree? Or wait, Sam was not on the To: line... Yours, Linus Walleij
Hi Linus, On Sat, Sep 01, 2012 at 01:28:34AM +0200, Linus Walleij wrote: > On Sat, Sep 1, 2012 at 1:27 AM, Linus Walleij <linus.walleij@linaro.org> wrote: > > On Fri, Aug 31, 2012 at 1:08 PM, Lee Jones <lee.jones@linaro.org> wrote: > >> On Tue, Aug 14, 2012 at 10:32:02AM +0200, Linus Walleij wrote: > >>> On Thu, Aug 9, 2012 at 5:57 PM, Lee Jones <lee.jones@linaro.org> wrote: > >>> > >>> > 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 <a.zummo@towertech.it> > >>> > CC: rtc-linux@googlegroups.com > >>> > Signed-off-by: Lee Jones <lee.jones@linaro.org> > >>> > >>> Acked-by: Linus Walleij <linus.walleij@linaro.org> > >> > >> I'm guessing we still need Alessandro's Ack? > > > > Well, usually we have Andrew Morton merging patches for RTC, so > > put him on CC. > > > > If I was the MFD maintainer I'd just merge this though, it's quite > > obvious. > > > > Sam: do you agree? I'd love to see the patch first :) Could you please bounce it to me ? Cheers, Samuel.
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),
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 <a.zummo@towertech.it> CC: rtc-linux@googlegroups.com Signed-off-by: Lee Jones <lee.jones@linaro.org> --- drivers/rtc/rtc-ab8500.c | 6 ------ 1 file changed, 6 deletions(-)