All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] IIO new drivers, features and cleanups for 3.14 - set 3
@ 2014-01-08 20:00 Jonathan Cameron
  2014-01-08 20:02 ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2014-01-08 20:00 UTC (permalink / raw)
  To: Greg Kroah-Hartman

The following changes since commit a6e8e3a470bf96575eebfa9dbfda6e1ec8929fb8:

   Merge tag 'iio-for-3.14b' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next (2013-12-24 10:30:57 -0800)

are available in the git repository at:


   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-for-3.14c

for you to fetch changes up to 38125b2c935b0037787ca213f96a7b976eba3199:

   iio: mxs-lradc: convert is_divided to a bitmap (2014-01-01 14:31:56 +0000)

----------------------------------------------------------------
Third round of new drivers, features and cleanups for IIO in the 3.14 cycle.

One new driver a spot of new functionality and a cleanup.

* New driver for the Capella CM32181 ambient light sensor. This is the first
   driver directly from Kevin at Capella with more already in the pipeline.
* Support for configurable predividers on the mxs lradc
* Convert a field to a bitmap in mxs lradc instead of using an array of
   unsigned longs to store boolean values.

----------------------------------------------------------------
Alexandre Belloni (1):
       iio: mxs-lradc: convert is_divided to a bitmap

Hector Palacios (3):
       iio: mxs-lradc: add scale attribute to channels
       iio: mxs-lradc: add scale_available file to channels
       iio: mxs-lradc: add write_raw function to modify scale

Kevin Tsai (1):
       iio: add Capella CM32181 ambient light sensor driver.

  .../devicetree/bindings/i2c/trivial-devices.txt    |   1 +
  drivers/iio/light/Kconfig                          |  11 +
  drivers/iio/light/Makefile                         |   1 +
  drivers/iio/light/cm32181.c                        | 379 +++++++++++++++++++++
  drivers/staging/iio/adc/mxs-lradc.c                | 222 +++++++++++-
  5 files changed, 611 insertions(+), 3 deletions(-)
  create mode 100644 drivers/iio/light/cm32181.c

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

* Re: [PULL] IIO new drivers, features and cleanups for 3.14 - set 3
  2014-01-08 20:00 [PULL] IIO new drivers, features and cleanups for 3.14 - set 3 Jonathan Cameron
@ 2014-01-08 20:02 ` Jonathan Cameron
  2014-01-08 20:24   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2014-01-08 20:02 UTC (permalink / raw)
  To: Jonathan Cameron, Greg Kroah-Hartman, linux-iio

Sorry all, I accidentally bcc'd linux-iio instead of cc'ing.

Greg, feel free to bounce this one back as too late if you like, but I thought
it worth a go given Linus has said there will be another RC and it would be
nice to get the Capella driver in 3.14!

On 08/01/14 20:00, Jonathan Cameron wrote:
> The following changes since commit a6e8e3a470bf96575eebfa9dbfda6e1ec8929fb8:
>
>    Merge tag 'iio-for-3.14b' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next (2013-12-24 10:30:57 -0800)
>
> are available in the git repository at:
>
>
>    git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-for-3.14c
>
> for you to fetch changes up to 38125b2c935b0037787ca213f96a7b976eba3199:
>
>    iio: mxs-lradc: convert is_divided to a bitmap (2014-01-01 14:31:56 +0000)
>
> ----------------------------------------------------------------
> Third round of new drivers, features and cleanups for IIO in the 3.14 cycle.
>
> One new driver a spot of new functionality and a cleanup.
>
> * New driver for the Capella CM32181 ambient light sensor. This is the first
>    driver directly from Kevin at Capella with more already in the pipeline.
> * Support for configurable predividers on the mxs lradc
> * Convert a field to a bitmap in mxs lradc instead of using an array of
>    unsigned longs to store boolean values.
>
> ----------------------------------------------------------------
> Alexandre Belloni (1):
>        iio: mxs-lradc: convert is_divided to a bitmap
>
> Hector Palacios (3):
>        iio: mxs-lradc: add scale attribute to channels
>        iio: mxs-lradc: add scale_available file to channels
>        iio: mxs-lradc: add write_raw function to modify scale
>
> Kevin Tsai (1):
>        iio: add Capella CM32181 ambient light sensor driver.
>
>   .../devicetree/bindings/i2c/trivial-devices.txt    |   1 +
>   drivers/iio/light/Kconfig                          |  11 +
>   drivers/iio/light/Makefile                         |   1 +
>   drivers/iio/light/cm32181.c                        | 379 +++++++++++++++++++++
>   drivers/staging/iio/adc/mxs-lradc.c                | 222 +++++++++++-
>   5 files changed, 611 insertions(+), 3 deletions(-)
>   create mode 100644 drivers/iio/light/cm32181.c
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PULL] IIO new drivers, features and cleanups for 3.14 - set 3
  2014-01-08 20:02 ` Jonathan Cameron
@ 2014-01-08 20:24   ` Greg Kroah-Hartman
  0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2014-01-08 20:24 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: Jonathan Cameron, linux-iio

On Wed, Jan 08, 2014 at 08:02:46PM +0000, Jonathan Cameron wrote:
> Sorry all, I accidentally bcc'd linux-iio instead of cc'ing.
> 
> Greg, feel free to bounce this one back as too late if you like, but I thought
> it worth a go given Linus has said there will be another RC and it would be
> nice to get the Capella driver in 3.14!

Now worries, this just snuck in :)

Now pulled and pushed out, thanks.

greg k-h

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

end of thread, other threads:[~2014-01-08 20:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-08 20:00 [PULL] IIO new drivers, features and cleanups for 3.14 - set 3 Jonathan Cameron
2014-01-08 20:02 ` Jonathan Cameron
2014-01-08 20:24   ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.