mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH 0/9] preperation for sh adding
Date: Thu, 2 Sep 2010 16:10:01 +0200	[thread overview]
Message-ID: <20100902141001.GA28968@game.jcrosoft.org> (raw)

Hi,

	this is the last updated patch series to prepare the adding of the SH
	architecture

The following changes since commit 0d35c3c8a0c2a1f1ff06eac20a12af0186753bc4:

  menu: simplify usage for clients (2010-08-30 21:06:02 +0200)

are available in the git repository at:
  git://git.jcrosoft.org/barebox.git sh-prepare

Jean-Christophe PLAGNIOL-VILLARD (9):
      types.h: move __kernel_dev_t to include/linux/types.h
      device: fix dev_name
      stm8815: fix the uart device clock match
      arm: move clkdev to drivers/clk
      vsprintf: add %w and %w support to print unit
      at91/clock: switch to %w for clock info printing
      cfi_flash: use %W and IEEE 1541 format
      use %W instead of size_human_readable and use IEEE 1541 format
      clkdev: add print clk info command

 arch/arm/Kconfig                          |    1 -
 arch/arm/Makefile                         |    2 +-
 arch/arm/common/Kconfig                   |    2 -
 arch/arm/common/Makefile                  |    5 --
 arch/arm/configs/nhk8815_defconfig        |    2 +-
 arch/arm/include/asm/clkdev.h             |   15 +------
 arch/arm/include/asm/posix_types.h        |    1 -
 arch/arm/mach-at91/clock.c                |    8 +--
 arch/arm/mach-nomadik/8815.c              |    6 ++-
 arch/arm/mach-nomadik/Kconfig             |    2 +-
 arch/arm/mach-nomadik/clock.c             |    7 +--
 arch/blackfin/include/asm/posix_types.h   |    1 -
 arch/m68k/include/asm/posix_types.h       |    1 -
 arch/ppc/include/asm/posix_types.h        |    1 -
 arch/sandbox/include/asm/posix_types.h    |    1 -
 arch/x86/include/asm/posix_types.h        |    1 -
 commands/Kconfig                          |    7 +++
 commands/bootm.c                          |    7 +--
 common/startup.c                          |    9 ++--
 drivers/Kconfig                           |    1 +
 drivers/Makefile                          |    1 +
 drivers/clk/Kconfig                       |    4 ++
 drivers/clk/Makefile                      |    2 +
 {arch/arm/common => drivers/clk}/clkdev.c |   57 +++++++++++++++++++---
 drivers/nor/cfi_flash.c                   |    4 +-
 include/common.h                          |    1 -
 include/driver.h                          |   12 +++--
 include/linux/clkdev.h                    |   36 ++++++++++++++
 include/linux/kernel.h                    |   20 ++++++++
 include/linux/types.h                     |    2 +
 lib/Makefile                              |    1 -
 lib/display_options.c                     |   60 -----------------------
 lib/driver.c                              |   16 +++----
 lib/vsprintf.c                            |   73 +++++++++++++++++++++++++++++
 34 files changed, 230 insertions(+), 139 deletions(-)
 delete mode 100644 arch/arm/common/Kconfig
 delete mode 100644 arch/arm/common/Makefile
 create mode 100644 drivers/clk/Kconfig
 create mode 100644 drivers/clk/Makefile
 rename {arch/arm/common => drivers/clk}/clkdev.c (75%)
 create mode 100644 include/linux/clkdev.h
 delete mode 100644 lib/display_options.c

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2010-09-02 14:17 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-02 14:10 Jean-Christophe PLAGNIOL-VILLARD [this message]
2010-09-02 14:10 ` [PATCH 1/9] types.h: move __kernel_dev_t to include/linux/types.h Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 2/9] device: fix dev_name Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 3/9] stm8815: fix the uart device clock match Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 4/9] arm: move clkdev to drivers/clk Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 5/9] vsprintf: add %w and %w support to print unit Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 15:29   ` Uwe Kleine-König
2010-09-02 15:32     ` Uwe Kleine-König
     [not found]       ` <20100902155421.GB28968@game.jcrosoft.org>
2010-09-02 17:54         ` Uwe Kleine-König
2010-09-02 14:10 ` [PATCH 6/9] at91/clock: switch to %w for clock info printing Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 7/9] cfi_flash: use %W and IEEE 1541 format Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 8/9] use %W instead of size_human_readable and use " Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 14:10 ` [PATCH 9/9] clkdev: add print clk info command Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 15:22   ` Uwe Kleine-König
2010-09-02 19:40 ` [PATCH 0/9 V2] preperation for sh adding Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 1/9 V2] types.h: move __kernel_dev_t to include/linux/types.h Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 2/9 V2] device: fix dev_name Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 3/9 V2] stm8815: fix the uart device clock match Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 4/9 V2] arm: move clkdev to drivers/clk Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 5/9 V2] vsprintf: add %w and %w support to print unit Jean-Christophe PLAGNIOL-VILLARD
2010-09-03 18:34     ` Uwe Kleine-König
2010-09-02 19:41   ` [PATCH 6/9 V2] at91/clock: switch to %w for clock info printing Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 7/9 V2] cfi_flash: use %W and IEEE 1541 format Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 8/9 V2] use %W instead of size_human_readable and use " Jean-Christophe PLAGNIOL-VILLARD
2010-09-02 19:41   ` [PATCH 9/9 V2] clkdev: add print clk info command Jean-Christophe PLAGNIOL-VILLARD
2010-09-16 10:38   ` [PATCH 0/9 V2] preperation for sh adding Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100902141001.GA28968@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox