* [rtc-linux] Re: [PATCHv2] rtc: Add a driver for Micro Crystal RV8803 [not found] <201511030710.GSjglrml%fengguang.wu@intel.com> @ 2015-11-03 7:07 ` Julia Lawall 2015-11-03 9:31 ` Alexandre Belloni 0 siblings, 1 reply; 3+ messages in thread From: Julia Lawall @ 2015-11-03 7:07 UTC (permalink / raw) To: Alexandre Belloni; +Cc: kbuild-all, Alessandro Zummo, rtc-linux, linux-kernel It looks like it is worth a check. julia On Tue, 3 Nov 2015, kbuild test robot wrote: > CC: kbuild-all@01.org > In-Reply-To: <1446504512-9079-1-git-send-email-alexandre.belloni@free-electrons.com> > TO: Alexandre Belloni <alexandre.belloni@free-electrons.com> > CC: Alessandro Zummo <a.zummo@towertech.it>, rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org, Alexandre Belloni <alexandre.belloni@free-electrons.com> > CC: rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org, Alexandre Belloni <alexandre.belloni@free-electrons.com> > > Hi Alexandre, > > [auto build test WARNING on abelloni/rtc-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] > > url: https://github.com/0day-ci/linux/commits/Alexandre-Belloni/rtc-Add-a-driver-for-Micro-Crystal-RV8803/20151103-065235 > :::::: branch date: 51 minutes ago > :::::: commit date: 51 minutes ago > > >> drivers/rtc/rtc-rv8803.c:244:2-8: preceding lock on line 240 > > git remote add linux-review https://github.com/0day-ci/linux > git remote update linux-review > git checkout f8c59e6bf4a130cb2f46cad981771dddecc406ff > vim +244 drivers/rtc/rtc-rv8803.c > > f8c59e6b Alexandre Belloni 2015-11-02 234 time64_t alarm_time = rtc_tm_to_time64(&alrm->time); > f8c59e6b Alexandre Belloni 2015-11-02 235 > f8c59e6b Alexandre Belloni 2015-11-02 236 alarm_time += 60 - alrm->time.tm_sec; > f8c59e6b Alexandre Belloni 2015-11-02 237 rtc_time64_to_tm(alarm_time, &alrm->time); > f8c59e6b Alexandre Belloni 2015-11-02 238 } > f8c59e6b Alexandre Belloni 2015-11-02 239 > f8c59e6b Alexandre Belloni 2015-11-02 @240 spin_lock_irqsave(&rv8803->flags_lock, irqflags); > f8c59e6b Alexandre Belloni 2015-11-02 241 > f8c59e6b Alexandre Belloni 2015-11-02 242 ret = i2c_smbus_read_i2c_block_data(client, RV8803_FLAG, 2, ctrl); > f8c59e6b Alexandre Belloni 2015-11-02 243 if (ret != 2) > f8c59e6b Alexandre Belloni 2015-11-02 @244 return ret < 0 ? ret : -EIO; > f8c59e6b Alexandre Belloni 2015-11-02 245 > f8c59e6b Alexandre Belloni 2015-11-02 246 alarmvals[0] = bin2bcd(alrm->time.tm_min); > f8c59e6b Alexandre Belloni 2015-11-02 247 alarmvals[1] = bin2bcd(alrm->time.tm_hour); > > --- > 0-DAY kernel test infrastructure Open Source Technology Center > https://lists.01.org/pipermail/kbuild-all Intel Corporation > ^ permalink raw reply [flat|nested] 3+ messages in thread
* [rtc-linux] Re: [PATCHv2] rtc: Add a driver for Micro Crystal RV8803 2015-11-03 7:07 ` [rtc-linux] Re: [PATCHv2] rtc: Add a driver for Micro Crystal RV8803 Julia Lawall @ 2015-11-03 9:31 ` Alexandre Belloni 2015-11-03 9:34 ` Julia Lawall 0 siblings, 1 reply; 3+ messages in thread From: Alexandre Belloni @ 2015-11-03 9:31 UTC (permalink / raw) To: Julia Lawall; +Cc: kbuild-all, Alessandro Zummo, rtc-linux, linux-kernel On 03/11/2015 at 08:07:57 +0100, Julia Lawall wrote : > It looks like it is worth a check. > Indeed, I missed that one. Strangely, I didn't get that mail from the kbuild test robot (and the list doesn't seem to have a copy either). Is that intended? > julia > > On Tue, 3 Nov 2015, kbuild test robot wrote: > > > CC: kbuild-all@01.org > > In-Reply-To: <1446504512-9079-1-git-send-email-alexandre.belloni@free-electrons.com> > > TO: Alexandre Belloni <alexandre.belloni@free-electrons.com> > > CC: Alessandro Zummo <a.zummo@towertech.it>, rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org, Alexandre Belloni <alexandre.belloni@free-electrons.com> > > CC: rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org, Alexandre Belloni <alexandre.belloni@free-electrons.com> > > > > Hi Alexandre, > > > > [auto build test WARNING on abelloni/rtc-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] > > > > url: https://github.com/0day-ci/linux/commits/Alexandre-Belloni/rtc-Add-a-driver-for-Micro-Crystal-RV8803/20151103-065235 > > :::::: branch date: 51 minutes ago > > :::::: commit date: 51 minutes ago > > > > >> drivers/rtc/rtc-rv8803.c:244:2-8: preceding lock on line 240 > > > > git remote add linux-review https://github.com/0day-ci/linux > > git remote update linux-review > > git checkout f8c59e6bf4a130cb2f46cad981771dddecc406ff > > vim +244 drivers/rtc/rtc-rv8803.c > > > > f8c59e6b Alexandre Belloni 2015-11-02 234 time64_t alarm_time = rtc_tm_to_time64(&alrm->time); > > f8c59e6b Alexandre Belloni 2015-11-02 235 > > f8c59e6b Alexandre Belloni 2015-11-02 236 alarm_time += 60 - alrm->time.tm_sec; > > f8c59e6b Alexandre Belloni 2015-11-02 237 rtc_time64_to_tm(alarm_time, &alrm->time); > > f8c59e6b Alexandre Belloni 2015-11-02 238 } > > f8c59e6b Alexandre Belloni 2015-11-02 239 > > f8c59e6b Alexandre Belloni 2015-11-02 @240 spin_lock_irqsave(&rv8803->flags_lock, irqflags); > > f8c59e6b Alexandre Belloni 2015-11-02 241 > > f8c59e6b Alexandre Belloni 2015-11-02 242 ret = i2c_smbus_read_i2c_block_data(client, RV8803_FLAG, 2, ctrl); > > f8c59e6b Alexandre Belloni 2015-11-02 243 if (ret != 2) > > f8c59e6b Alexandre Belloni 2015-11-02 @244 return ret < 0 ? ret : -EIO; > > f8c59e6b Alexandre Belloni 2015-11-02 245 > > f8c59e6b Alexandre Belloni 2015-11-02 246 alarmvals[0] = bin2bcd(alrm->time.tm_min); > > f8c59e6b Alexandre Belloni 2015-11-02 247 alarmvals[1] = bin2bcd(alrm->time.tm_hour); > > > > --- > > 0-DAY kernel test infrastructure Open Source Technology Center > > https://lists.01.org/pipermail/kbuild-all Intel Corporation > > -- Alexandre Belloni, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -- -- You received this message because you are subscribed to "rtc-linux". Membership options at http://groups.google.com/group/rtc-linux . Please read http://groups.google.com/group/rtc-linux/web/checklist before submitting a driver. --- You received this message because you are subscribed to the Google Groups "rtc-linux" group. To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com. For more options, visit https://groups.google.com/d/optout. ^ permalink raw reply [flat|nested] 3+ messages in thread
* [rtc-linux] Re: [PATCHv2] rtc: Add a driver for Micro Crystal RV8803 2015-11-03 9:31 ` Alexandre Belloni @ 2015-11-03 9:34 ` Julia Lawall 0 siblings, 0 replies; 3+ messages in thread From: Julia Lawall @ 2015-11-03 9:34 UTC (permalink / raw) To: Alexandre Belloni Cc: Julia Lawall, kbuild-all, Alessandro Zummo, rtc-linux, linux-kernel On Tue, 3 Nov 2015, Alexandre Belloni wrote: > On 03/11/2015 at 08:07:57 +0100, Julia Lawall wrote : > > It looks like it is worth a check. > > > > Indeed, I missed that one. > > Strangely, I didn't get that mail from the kbuild test robot (and the > list doesn't seem to have a copy either). Is that intended? Yes, they go to me first, I check if they look like real problems, and then forward them on to the mentioned people. julia > > > julia > > > > On Tue, 3 Nov 2015, kbuild test robot wrote: > > > > > CC: kbuild-all@01.org > > > In-Reply-To: <1446504512-9079-1-git-send-email-alexandre.belloni@free-electrons.com> > > > TO: Alexandre Belloni <alexandre.belloni@free-electrons.com> > > > CC: Alessandro Zummo <a.zummo@towertech.it>, rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org, Alexandre Belloni <alexandre.belloni@free-electrons.com> > > > CC: rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org, Alexandre Belloni <alexandre.belloni@free-electrons.com> > > > > > > Hi Alexandre, > > > > > > [auto build test WARNING on abelloni/rtc-next -- if it's inappropriate base, please suggest rules for selecting the more suitable base] > > > > > > url: https://github.com/0day-ci/linux/commits/Alexandre-Belloni/rtc-Add-a-driver-for-Micro-Crystal-RV8803/20151103-065235 > > > :::::: branch date: 51 minutes ago > > > :::::: commit date: 51 minutes ago > > > > > > >> drivers/rtc/rtc-rv8803.c:244:2-8: preceding lock on line 240 > > > > > > git remote add linux-review https://github.com/0day-ci/linux > > > git remote update linux-review > > > git checkout f8c59e6bf4a130cb2f46cad981771dddecc406ff > > > vim +244 drivers/rtc/rtc-rv8803.c > > > > > > f8c59e6b Alexandre Belloni 2015-11-02 234 time64_t alarm_time = rtc_tm_to_time64(&alrm->time); > > > f8c59e6b Alexandre Belloni 2015-11-02 235 > > > f8c59e6b Alexandre Belloni 2015-11-02 236 alarm_time += 60 - alrm->time.tm_sec; > > > f8c59e6b Alexandre Belloni 2015-11-02 237 rtc_time64_to_tm(alarm_time, &alrm->time); > > > f8c59e6b Alexandre Belloni 2015-11-02 238 } > > > f8c59e6b Alexandre Belloni 2015-11-02 239 > > > f8c59e6b Alexandre Belloni 2015-11-02 @240 spin_lock_irqsave(&rv8803->flags_lock, irqflags); > > > f8c59e6b Alexandre Belloni 2015-11-02 241 > > > f8c59e6b Alexandre Belloni 2015-11-02 242 ret = i2c_smbus_read_i2c_block_data(client, RV8803_FLAG, 2, ctrl); > > > f8c59e6b Alexandre Belloni 2015-11-02 243 if (ret != 2) > > > f8c59e6b Alexandre Belloni 2015-11-02 @244 return ret < 0 ? ret : -EIO; > > > f8c59e6b Alexandre Belloni 2015-11-02 245 > > > f8c59e6b Alexandre Belloni 2015-11-02 246 alarmvals[0] = bin2bcd(alrm->time.tm_min); > > > f8c59e6b Alexandre Belloni 2015-11-02 247 alarmvals[1] = bin2bcd(alrm->time.tm_hour); > > > > > > --- > > > 0-DAY kernel test infrastructure Open Source Technology Center > > > https://lists.01.org/pipermail/kbuild-all Intel Corporation > > > > > -- > Alexandre Belloni, Free Electrons > Embedded Linux, Kernel and Android engineering > http://free-electrons.com > ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-11-03 9:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <201511030710.GSjglrml%fengguang.wu@intel.com>
2015-11-03 7:07 ` [rtc-linux] Re: [PATCHv2] rtc: Add a driver for Micro Crystal RV8803 Julia Lawall
2015-11-03 9:31 ` Alexandre Belloni
2015-11-03 9:34 ` Julia Lawall
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox