10 Mar, 2011

1 commit

  • Now that the generic code handles UIE mode irqs via periodic
    alarm interrupts, no one calls the
    rtc_class_ops->update_irq_enable() method anymore.

    This patch removes the driver hooks and implementations of
    update_irq_enable if no one else is calling it.

    CC: Thomas Gleixner
    CC: Alessandro Zummo
    CC: Marcelo Roberto Jimenez
    CC: rtc-linux@googlegroups.com
    Signed-off-by: John Stultz

    John Stultz
     

26 Feb, 2011

1 commit

  • In linux rtc_time struct, tm_mon range is 0~11, tm_wday range is 0~6,
    while in RTC HW REG, month range is 1~12, day of the week range is 1~7,
    this patch adjusts difference of them.

    The efect of this bug was that most of month will be operated on as the
    next month by the hardware (When in Jan it maybe even worse). For
    example, if in May, software wrote 4 to the hardware, which handled it as
    April. Then the logic would be different between software and hardware,
    which would cause weird things to happen.

    Signed-off-by: Lei Xu
    Cc: Alessandro Zummo
    Cc: john stultz
    Cc: Jack Lan
    Cc:
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Lei Xu
     

24 Dec, 2010

1 commit

  • flush_scheduled_work() is deprecated and scheduled to be removed. On
    removal, directly cancel the work, and flush the uie_task in
    rtc-dev.c::clear_uie().

    Signed-off-by: Tejun Heo
    Cc: Alessandro Zummo
    Cc: rtc-linux@googlegroups.com

    Tejun Heo
     

28 Oct, 2010

1 commit


30 Sep, 2010

1 commit


11 Aug, 2010

1 commit

  • Add a driver for the DS3232 RTC chip via the I2C bus. Alarms are not
    supported in this version of the driver.

    [akpm@linux-foundation.org: fix Kconfig help text]
    Signed-off-by: Mingkai Hu
    Signed-off-by: Jingchang Lu
    Signed-off-by: Srikanth Srinivasan
    Signed-off-by: Roy Zang
    Acked-by: Wan ZongShun
    Cc: Kumar Gala
    Cc: Alessandro Zummo
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Roy Zang