16 Dec, 2009

1 commit


10 Sep, 2009

1 commit


12 Feb, 2009

1 commit


16 Jan, 2009

1 commit

  • Fix these build errors:

    CC drivers/rtc/rtc-pxa.o
    drivers/rtc/rtc-pxa.c: In function `pxa_rtc_init':
    drivers/rtc/rtc-pxa.c:472: error: implicit declaration of function `cpu_is_pxa27x'
    drivers/rtc/rtc-pxa.c:472: error: implicit declaration of function `cpu_is_pxa3xx'

    Signed-off-by: Antonio Ospite
    Signed-off-by: Alessandro Zummo
    Cc: David Brownell
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Antonio Ospite
     

07 Jan, 2009

2 commits

  • Small fixes for the pxa27x/pxa3xx driver

    - use platform_driver_probe
    - fixed exit paths
    - fixed probe sequence
    - added missing include
    - using linux/io.h instead of asm/io.h

    Signed-off-by: Alessandro Zummo
    Tested-by: Robert Jarzmik
    Cc: Jonathan Cameron
    Cc: David Brownell
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Alessandro Zummo
     
  • With PXA27x and above, a new RTC hardware block was added in addition to
    the legacy one which is also found on the SA1100 SOC family. This second
    RTC block is called "wristwatch" and "periodic interrupt" and works
    independently from the other RTC block.

    The driver offers provides :
    - a 1Hz ticking clock
    - a periodic alarm, in the 1Hz to 1000Hz range
    - a one shot alarm

    Signed-off-by: Robert Jarzmik
    Cc: Jonathan Cameron
    Signed-off-by: Alessandro Zummo
    Cc: David Brownell
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Robert Jarzmik