Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [V3 0/6] rtc-sa1100 clean up
@ 2011-11-30  6:34 Jett.Zhou
  2011-11-30 17:45 ` Arnd Bergmann
  2012-01-19 11:39 ` Russell King - ARM Linux
  0 siblings, 2 replies; 11+ messages in thread
From: Jett.Zhou @ 2011-11-30  6:34 UTC (permalink / raw)
  To: linux-arm-kernel

This patch set do the following things:
  1) clean up sa1100-rtc for support sa1100/pxa/mmp series
  2) add dummy clock for pxa arch
  3) clean up clock dev for sa1100 arch and add dummy clock for sa1100
  4) fix build error for sa1100 arch

Jett.Zhou (6):
  RTC: sa1100: Clean out ost register
  RTC: sa1100: remove redundant code of setting alarm
  RTC: sa1100: support sa1100, pxa and mmp soc families
  ARM: pxa: add dummy clock for sa1100-rtc
  ARM: sa1100: clean up of the clock support
  ARM: sa1100: fix build error

 arch/arm/Kconfig                   |    2 +-
 arch/arm/mach-pxa/devices.c        |   20 +++
 arch/arm/mach-pxa/pxa25x.c         |    1 +
 arch/arm/mach-pxa/pxa27x.c         |    1 +
 arch/arm/mach-pxa/pxa300.c         |    1 +
 arch/arm/mach-pxa/pxa320.c         |    1 +
 arch/arm/mach-pxa/pxa3xx.c         |    1 +
 arch/arm/mach-pxa/pxa95x.c         |    1 +
 arch/arm/mach-sa1100/Makefile.boot |    4 +-
 arch/arm/mach-sa1100/clock.c       |   91 ++++++++---
 arch/arm/mach-sa1100/generic.c     |   20 +++
 drivers/rtc/Kconfig                |    2 +-
 drivers/rtc/rtc-sa1100.c           |  300 ++++++++++++++++++++++--------------
 13 files changed, 299 insertions(+), 146 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [V3 0/6] rtc-sa1100 clean up
@ 2011-11-30  6:26 Jett.Zhou
  0 siblings, 0 replies; 11+ messages in thread
From: Jett.Zhou @ 2011-11-30  6:26 UTC (permalink / raw)
  To: linux-arm-kernel

This patch set do the following things:
  1) clean up sa1100-rtc for support sa1100/pxa/mmp series
  2) add dummy clock for pxa arch
  3) clean up clock dev for sa1100 arch and add dummy clock for sa1100
  4) fix build error for sa1100 arch

Jett.Zhou (6):
  RTC: sa1100: Clean out ost register
  RTC: sa1100: remove redundant code of setting alarm
  RTC: sa1100: support sa1100, pxa and mmp soc families
  ARM: pxa: add dummy clock for sa1100-rtc
  ARM: sa1100: clean up of the clock support
  ARM: sa1100: fix build error

 arch/arm/Kconfig                   |    2 +-
 arch/arm/mach-pxa/devices.c        |   20 +++
 arch/arm/mach-pxa/pxa25x.c         |    1 +
 arch/arm/mach-pxa/pxa27x.c         |    1 +
 arch/arm/mach-pxa/pxa300.c         |    1 +
 arch/arm/mach-pxa/pxa320.c         |    1 +
 arch/arm/mach-pxa/pxa3xx.c         |    1 +
 arch/arm/mach-pxa/pxa95x.c         |    1 +
 arch/arm/mach-sa1100/Makefile.boot |    4 +-
 arch/arm/mach-sa1100/clock.c       |   91 ++++++++---
 arch/arm/mach-sa1100/generic.c     |   20 +++
 drivers/rtc/Kconfig                |    2 +-
 drivers/rtc/rtc-sa1100.c           |  300 ++++++++++++++++++++++--------------
 13 files changed, 299 insertions(+), 146 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [V3 0/6] rtc-sa1100 clean up
@ 2011-11-30  4:26 Jett.Zhou
  2011-11-30  4:56 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 11+ messages in thread
From: Jett.Zhou @ 2011-11-30  4:26 UTC (permalink / raw)
  To: linux-arm-kernel

This patch set do the following things:
  1) clean up sa1100-rtc for support sa1100/pxa/mmp series
  2) add dummy clock for pxa arch
  3) clean up clock dev for sa1100 arch and add dummy clock for sa1100
  4) fix build error for sa1100 arch

Jett.Zhou (6):
  RTC: sa1100: Clean out ost register
  RTC: sa1100: remove redundant code of setting alarm
  RTC: sa1100: support sa1100, pxa and mmp soc families
  ARM: pxa: add dummy clock for sa1100-rtc
  ARM: sa1100: clean up of the clock support
  ARM: sa1100: fix build error

 arch/arm/Kconfig                   |    2 +-
 arch/arm/mach-pxa/devices.c        |   20 +++
 arch/arm/mach-pxa/pxa25x.c         |    1 +
 arch/arm/mach-pxa/pxa27x.c         |    1 +
 arch/arm/mach-pxa/pxa300.c         |    1 +
 arch/arm/mach-pxa/pxa320.c         |    1 +
 arch/arm/mach-pxa/pxa3xx.c         |    1 +
 arch/arm/mach-pxa/pxa95x.c         |    1 +
 arch/arm/mach-sa1100/Makefile.boot |    4 +-
 arch/arm/mach-sa1100/clock.c       |   91 ++++++++---
 arch/arm/mach-sa1100/generic.c     |   20 +++
 drivers/rtc/Kconfig                |    2 +-
 drivers/rtc/rtc-sa1100.c           |  300 ++++++++++++++++++++++--------------
 13 files changed, 299 insertions(+), 146 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-01-19 12:03 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30  6:34 [V3 0/6] rtc-sa1100 clean up Jett.Zhou
2011-11-30 17:45 ` Arnd Bergmann
2011-12-01  4:54   ` Jett Zhou
2011-12-08  2:27   ` Haojian Zhuang
2012-01-19 11:39 ` Russell King - ARM Linux
2012-01-19 11:46   ` Russell King - ARM Linux
2012-01-19 12:03     ` Russell King - ARM Linux
  -- strict thread matches above, loose matches on Subject: below --
2011-11-30  6:26 Jett.Zhou
2011-11-30  4:26 Jett.Zhou
2011-11-30  4:56 ` Jean-Christophe PLAGNIOL-VILLARD
2011-11-30  6:37   ` Jett Zhou

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox