Re: [PATCH 1/2] RTC: DaVinci RTC driver

2009-11-02 Thread Kevin Hilman
writes: > From: Miguel Aguilar > > This driver features: > > * Alarm support. > * Periodic interrupt by using a timer include into the RTC module. > * The update interrupt is not supported by this RTC module. > > This driver was tested on a DM365 EVM by using the rtc-test application > from the

[PATCH 1/2] RTC: DaVinci RTC driver

2009-10-28 Thread miguel.aguilar
From: Miguel Aguilar This driver features: * Alarm support. * Periodic interrupt by using a timer include into the RTC module. * The update interrupt is not supported by this RTC module. This driver was tested on a DM365 EVM by using the rtc-test application from the Documentation/rtc.txt. Sig

RE: [PATCH 1/2] RTC: DaVinci RTC driver

2009-10-27 Thread Grosen, Mark
boun...@linux.davincidsp.com [mailto:davinci-linux-open-source-boun...@linux.davincidsp.com] On Behalf Of Miguel Aguilar Sent: Tuesday, October 27, 2009 1:17 PM To: Kevin Hilman Cc: davinci-linux-open-source@linux.davincidsp.com; rtc-li...@googlegroups.com Subject: Re: [PATCH 1/2] RTC: DaVinci RTC dr

Re: [PATCH 1/2] RTC: DaVinci RTC driver

2009-10-27 Thread Miguel Aguilar
Kevin, + return -EINVAL; + + spin_lock_irqsave(&davinci_rtc_lock, flags); + + while (davinci_rtcss_read(DAVINCI_PRTCSS_RTC_CCTRL) & + DAVINCI_PRTCSS_RTC_CCTRL_CALBUSY); As reported by checkpatch, the empty body of the polling loop should be on the ne

Re: [PATCH 1/2] RTC: DaVinci RTC driver

2009-10-19 Thread Kevin Hilman
writes: > From: Miguel Aguilar > > This driver features: > > * Alarm support. > * Periodic interrupt by using a timer include into the RTC module. > * The update interrupt is not supported by this RTC module. > > This driver was tested on a DM365 EVM by using the rtc-test application > from the

[PATCH 1/2] RTC: DaVinci RTC driver

2009-10-16 Thread miguel.aguilar
From: Miguel Aguilar This driver features: * Alarm support. * Periodic interrupt by using a timer include into the RTC module. * The update interrupt is not supported by this RTC module. This driver was tested on a DM365 EVM by using the rtc-test application from the Documentation/rtc.txt. Sig