linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: spi-next updated
       [not found] ` <fa686aa41001201316s1fc6581fg4a75894d0b32c458-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2010-01-21 17:02   ` Grant Likely
       [not found]     ` <fa686aa41001210902n459435beteae54e558c30eea7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Grant Likely @ 2010-01-21 17:02 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Hi all,

I've updated my spi-next branch again.  It now includes the following
patches.  (I'm sending the whole list instead of just the delta since
my last update ran afoul of the mailing list # of recipients rule).

g.

The following changes since commit 7284ce6c9f6153d1777df5f310c959724d1bd446:
  Linus Torvalds (1):
        Linux 2.6.33-rc4

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6 next-spi

Alberto Panizzo (1):
      spi/spi_imx: add device information by switching pr_debug() to dev_dbg()

Feng Tang (5):
      spi/dw_spi: bug fix in wait_till_not_busy()
      spi/dw_spi: add a missed dw_spi_remove_host() in exit sequence
      spi/dw_spi: refine the IRQ mode working flow
      spi/dw_spi: add a FIFO depth detection
      spi/dw_spi: conditional transfer mode changes

Grant Likely (1):
      spi/dw_spi: fix __init/__devinit section mismatch

Jassi Brar (6):
      spi/s3c64xx: Rename s3c64xx_spi_cntrlr_info
      spi/s3c64xx: Differentiate ip and rate clock
      spi/s3c64xx: Move src_clk to local driver data
      spi/s3c64xx: Check before mem-region release
      spi/s3c64xx: Include moved header
      spi/s3c64xx: Add new parameter to cs callback

Jean-Hugues Deschenes (3):
      Memory-mapped dw_spi driver
      spi/dw_spi: mmio code style fixups
      spi/dw_spi: Allow dw_spi.c to be a module

Magnus Damm (1):
      spi: update MSIOF includes

Márton Németh (1):
      spi: make Open Firmware device id constant

Paul Mundt (1):
      spi: xilinx_spi: Fix up I/O routine wrapping bogosity.

Robert P. J. Day (1):
      spi: Fix reversed args to time_before() in Freescale stmp driver.

Sandeep Paulraj (1):
      spi: Add SPI master driver for DaVinci/DA8xx

Steven King (1):
      spi: Add Freescale/Motorola Coldfire QSPI driver

Uwe Kleine-König (1):
      spi/mpc8xxx: don't check platform_get_irq's return value against zero

 drivers/spi/Kconfig           |   23 +-
 drivers/spi/Makefile          |    3 +
 drivers/spi/coldfire_qspi.c   |  640 +++++++++++++++++++++
 drivers/spi/davinci_spi.c     | 1255 +++++++++++++++++++++++++++++++++++++++++
 drivers/spi/dw_spi.c          |  111 +++--
 drivers/spi/dw_spi_mmio.c     |  147 +++++
 drivers/spi/dw_spi_pci.c      |    2 +
 drivers/spi/mpc52xx_psc_spi.c |    2 +-
 drivers/spi/mpc52xx_spi.c     |    2 +-
 drivers/spi/spi_imx.c         |    2 +-
 drivers/spi/spi_mpc8xxx.c     |    4 +-
 drivers/spi/spi_ppc4xx.c      |    2 +-
 drivers/spi/spi_s3c64xx.c     |   78 ++--
 drivers/spi/spi_sh_msiof.c    |    2 +-
 drivers/spi/spi_stmp.c        |    2 +-
 drivers/spi/xilinx_spi.c      |   28 +-
 drivers/spi/xilinx_spi_of.c   |    2 +-
 include/linux/spi/dw_spi.h    |    5 +
 18 files changed, 2218 insertions(+), 92 deletions(-)
 create mode 100644 drivers/spi/coldfire_qspi.c
 create mode 100644 drivers/spi/davinci_spi.c
 create mode 100644 drivers/spi/dw_spi_mmio.c


On Wed, Jan 20, 2010 at 2:16 PM, Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> wrote:
> Hi all.  I've picked up a bunch of the SPI patches into my next-spi
> branch in preparation for 2.6.34.  Please take a look and let me know
> if I'm missing anything.
>
> You can also check on the status of patches in patchwork:
>
> http://patchwork.kernel.org/project/spi-devel-general/list/
>
> Cheers,
> g.
>
> The following changes since commit 7284ce6c9f6153d1777df5f310c959724d1bd446:
>  Linus Torvalds (1):
>        Linux 2.6.33-rc4
>
> are available in the git repository at:
>
>  git://git.secretlab.ca/git/linux-2.6 next-spi
>
> Alberto Panizzo (1):
>      spi/spi_imx: add device information by switching pr_debug() to dev_dbg()
>
> Feng Tang (3):
>      spi/dw_spi: bug fix in wait_till_not_busy()
>      spi/dw_spi: add a missed dw_spi_remove_host() in exit sequence
>      spi/dw_spi: refine the IRQ mode working flow
>
> Grant Likely (1):
>      spi/dw_spi: fix __init/__devinit section mismatch
>
> Jassi Brar (6):
>      spi/s3c64xx: Rename s3c64xx_spi_cntrlr_info
>      spi/s3c64xx: Differentiate ip and rate clock
>      spi/s3c64xx: Move src_clk to local driver data
>      spi/s3c64xx: Check before mem-region release
>      spi/s3c64xx: Include moved header
>      spi/s3c64xx: Add new parameter to cs callback
>
> Magnus Damm (1):
>      spi: update MSIOF includes
>
> Márton Németh (1):
>      spi: make Open Firmware device id constant
>
> Paul Mundt (1):
>      spi: xilinx_spi: Fix up I/O routine wrapping bogosity.
>
> Robert P. J. Day (1):
>      spi: Fix reversed args to time_before() in Freescale stmp driver.
>
> Sandeep Paulraj (1):
>      spi: Add SPI master driver for DaVinci/DA8xx
>
> Steven King (1):
>      spi: Add Freescale/Motorola Coldfire QSPI driver
>
> Uwe Kleine-König (1):
>      spi/mpc8xxx: don't check platform_get_irq's return value against zero
>
>  drivers/spi/Kconfig           |   17 +
>  drivers/spi/Makefile          |    2 +
>  drivers/spi/coldfire_qspi.c   |  640 +++++++++++++++++++++
>  drivers/spi/davinci_spi.c     | 1255 +++++++++++++++++++++++++++++++++++++++++
>  drivers/spi/dw_spi.c          |   68 ++-
>  drivers/spi/dw_spi_pci.c      |    2 +
>  drivers/spi/mpc52xx_psc_spi.c |    2 +-
>  drivers/spi/mpc52xx_spi.c     |    2 +-
>  drivers/spi/spi_imx.c         |    2 +-
>  drivers/spi/spi_mpc8xxx.c     |    4 +-
>  drivers/spi/spi_ppc4xx.c      |    2 +-
>  drivers/spi/spi_s3c64xx.c     |   78 ++--
>  drivers/spi/spi_sh_msiof.c    |    2 +-
>  drivers/spi/spi_stmp.c        |    2 +-
>  drivers/spi/xilinx_spi.c      |   28 +-
>  drivers/spi/xilinx_spi_of.c   |    2 +-
>  include/linux/spi/dw_spi.h    |    1 +
>  17 files changed, 2024 insertions(+), 85 deletions(-)
>  create mode 100644 drivers/spi/coldfire_qspi.c
>  create mode 100644 drivers/spi/davinci_spi.c
>
>
> --
> Grant Likely, B.Sc., P.Eng.
> Secret Lab Technologies Ltd.
>



-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

------------------------------------------------------------------------------
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev

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

* Re: spi-next updated
       [not found]     ` <fa686aa41001210902n459435beteae54e558c30eea7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2010-01-22 20:28       ` Steven King
  0 siblings, 0 replies; 2+ messages in thread
From: Steven King @ 2010-01-22 20:28 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

On Thursday 21 January 2010 09:02:51 Grant Likely wrote:
<snip>
> Steven King (1):
>       spi: Add Freescale/Motorola Coldfire QSPI driver

thanks Grant.
-- 
Steven King -- sfking at fdwdc dot com


------------------------------------------------------------------------------
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev

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

end of thread, other threads:[~2010-01-22 20:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <fa686aa41001201316s1fc6581fg4a75894d0b32c458@mail.gmail.com>
     [not found] ` <fa686aa41001201316s1fc6581fg4a75894d0b32c458-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-21 17:02   ` spi-next updated Grant Likely
     [not found]     ` <fa686aa41001210902n459435beteae54e558c30eea7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-22 20:28       ` Steven King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).