Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754540AbbGUKB4 (ORCPT ); Tue, 21 Jul 2015 06:01:56 -0400 Received: from down.free-electrons.com ([37.187.137.238]:48128 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752791AbbGUKBy (ORCPT ); Tue, 21 Jul 2015 06:01:54 -0400 Date: Tue, 21 Jul 2015 12:01:51 +0200 From: Alexandre Belloni To: S Twiss Cc: Alessandro Zummo , DEVICETREE , LINUXINPUT , LINUXKERNEL , RTCLINUX , David Dajun Chen , Ian Campbell , Kumar Gala , Lee Jones , Mark Rutland , Pawel Moll , Rob Herring , Samuel Ortiz , Support Opensource Subject: Re: [PATCH V2 3/3] rtc: da9063: Add DA9062 RTC capability to DA9063 RTC driver Message-ID: <20150721100151.GC2853@piout.net> References: <93f0906ed7db18b893385b60a43b02f248dfe9a6.1437471790.git.stwiss.opensource@diasemi.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <93f0906ed7db18b893385b60a43b02f248dfe9a6.1437471790.git.stwiss.opensource@diasemi.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1537 Lines: 51 Hi Steve, it looks mostly good, a few more comments: On 21/07/2015 at 10:43:10 +0100, S Twiss wrote : > - if (val & (DA9063_E_ALARM)) > + if (val & (config->rtc_event_alarm_mask)) unneeded parenthesis here > + if (of_device_is_compatible(pdev->dev.of_node, "dlg,da9063-rtc")) { > + struct da9063 *chip = dev_get_drvdata(pdev->dev.parent); > + > + if (chip->variant_code == PMIC_DA9063_AD) > + rtc->config = &da9063_ad_regs; > + } else > + rtc->config = match->data; Both arms of the if should use braces. Also, what happens if it is a da9063, BB variant? I guess rtc->config will not be set. maybe you should write: rtc->config = match->data; if (of_device_is_compatible(pdev->dev.of_node, "dlg,da9063-rtc")) { struct da9063 *chip = dev_get_drvdata(pdev->dev.parent); if (chip->variant_code == PMIC_DA9063_AD) rtc->config = &da9063_ad_regs; } > @@ -348,5 +515,5 @@ module_platform_driver(da9063_rtc_driver); > > MODULE_AUTHOR("S Twiss "); > MODULE_DESCRIPTION("Real time clock device driver for Dialog DA9063"); > -MODULE_LICENSE("GPL v2"); > +MODULE_LICENSE("GPL"); This should be part of the license change. -- Alexandre Belloni, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/