All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] 4th set of IIO fixes for the 4.2 cycle
@ 2015-08-08 19:07 Jonathan Cameron
  2015-08-10 20:00 ` Jonathan Cameron
  2015-08-11  0:06 ` Greg KH
  0 siblings, 2 replies; 6+ messages in thread
From: Jonathan Cameron @ 2015-08-08 19:07 UTC (permalink / raw)
  To: Greg KH, linux-iio

The following changes since commit 40c3ef9d2f14cce91dbd6ae9c9ccf6210d8c5df7:

  staging: comedi: das1800: add missing break in switch (2015-07-31 16:59:47 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-4.2d

for you to fetch changes up to 2e8ea3cded44a8fe0ba4d4d14b290a458f969b1f:

  iio: event: Remove negative error code from iio_event_poll (2015-08-08 17:18:16 +0100)

----------------------------------------------------------------
Fourth set of IIO fixes for the 4.2 cycle.

* Poll functions for both event chardev and the buffer one were returning
  negative error codes (via a positive value).
* A recent change to lsiio adding some error handling that was wrong and
  stopped the tool working.
* bmg160 was missing some dependencies in Kconfig
* berlin2-adc had a misshandled register (wrote a value rather than a bitmap)

----------------------------------------------------------------
Cristina Opriceana (2):
      iio: industrialio-buffer: Fix iio_buffer_poll return value
      iio: event: Remove negative error code from iio_event_poll

Hartmut Knaack (1):
      iio:adc:berlin2-adc: Fix register definition

Linus Walleij (1):
      iio: lsiio: fix error code handling error

Markus Pargmann (1):
      iio: bmg160: IIO_BUFFER and IIO_TRIGGERED_BUFFER are required

 drivers/iio/adc/berlin2-adc.c     | 8 ++++----
 drivers/iio/gyro/Kconfig          | 3 ++-
 drivers/iio/industrialio-buffer.c | 2 +-
 drivers/iio/industrialio-event.c  | 2 +-
 tools/iio/lsiio.c                 | 4 ++--
 5 files changed, 10 insertions(+), 9 deletions(-)

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

* Re: [PULL] 4th set of IIO fixes for the 4.2 cycle
  2015-08-08 19:07 [PULL] 4th set of IIO fixes for the 4.2 cycle Jonathan Cameron
@ 2015-08-10 20:00 ` Jonathan Cameron
  2015-08-11  0:06 ` Greg KH
  1 sibling, 0 replies; 6+ messages in thread
From: Jonathan Cameron @ 2015-08-10 20:00 UTC (permalink / raw)
  To: Greg KH, linux-iio

Hi Greg,

There will be a merge conflict from this pull when you pull it into your
staging/staging-next tree.

The resolution is pretty obvious (rename retval to ret and keep the < 0)
in the relevant places.

Been a busy cycle and my pull requests have been less frequent than ideal
due to summer fun!

Jonathan

On 08/08/15 20:07, Jonathan Cameron wrote:
> The following changes since commit 40c3ef9d2f14cce91dbd6ae9c9ccf6210d8c5df7:
> 
>   staging: comedi: das1800: add missing break in switch (2015-07-31 16:59:47 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-4.2d
> 
> for you to fetch changes up to 2e8ea3cded44a8fe0ba4d4d14b290a458f969b1f:
> 
>   iio: event: Remove negative error code from iio_event_poll (2015-08-08 17:18:16 +0100)
> 
> ----------------------------------------------------------------
> Fourth set of IIO fixes for the 4.2 cycle.
> 
> * Poll functions for both event chardev and the buffer one were returning
>   negative error codes (via a positive value).
> * A recent change to lsiio adding some error handling that was wrong and
>   stopped the tool working.
> * bmg160 was missing some dependencies in Kconfig
> * berlin2-adc had a misshandled register (wrote a value rather than a bitmap)
> 
> ----------------------------------------------------------------
> Cristina Opriceana (2):
>       iio: industrialio-buffer: Fix iio_buffer_poll return value
>       iio: event: Remove negative error code from iio_event_poll
> 
> Hartmut Knaack (1):
>       iio:adc:berlin2-adc: Fix register definition
> 
> Linus Walleij (1):
>       iio: lsiio: fix error code handling error
> 
> Markus Pargmann (1):
>       iio: bmg160: IIO_BUFFER and IIO_TRIGGERED_BUFFER are required
> 
>  drivers/iio/adc/berlin2-adc.c     | 8 ++++----
>  drivers/iio/gyro/Kconfig          | 3 ++-
>  drivers/iio/industrialio-buffer.c | 2 +-
>  drivers/iio/industrialio-event.c  | 2 +-
>  tools/iio/lsiio.c                 | 4 ++--
>  5 files changed, 10 insertions(+), 9 deletions(-)
> --
> 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] 6+ messages in thread

* Re: [PULL] 4th set of IIO fixes for the 4.2 cycle
  2015-08-08 19:07 [PULL] 4th set of IIO fixes for the 4.2 cycle Jonathan Cameron
  2015-08-10 20:00 ` Jonathan Cameron
@ 2015-08-11  0:06 ` Greg KH
  2015-08-11  7:29   ` Jonathan Cameron
  1 sibling, 1 reply; 6+ messages in thread
From: Greg KH @ 2015-08-11  0:06 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: linux-iio

On Sat, Aug 08, 2015 at 08:07:26PM +0100, Jonathan Cameron wrote:
> The following changes since commit 40c3ef9d2f14cce91dbd6ae9c9ccf6210d8c5df7:
> 
>   staging: comedi: das1800: add missing break in switch (2015-07-31 16:59:47 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-4.2d

Can these wait for 4.3-rc1?  I'd like my last set of pull requests to be
the last one for 4.2.  If it's a big deal, we can mark these for -stable
and get them into 4.2.1?

thanks,

greg k-h

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

* Re: [PULL] 4th set of IIO fixes for the 4.2 cycle
  2015-08-11  0:06 ` Greg KH
@ 2015-08-11  7:29   ` Jonathan Cameron
  2015-08-11 22:42     ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Cameron @ 2015-08-11  7:29 UTC (permalink / raw)
  To: Greg KH, Jonathan Cameron; +Cc: linux-iio



On 11 August 2015 01:06:10 BST, Greg KH <gregkh@linuxfoundation.org> wrote:
>On Sat, Aug 08, 2015 at 08:07:26PM +0100, Jonathan Cameron wrote:
>> The following changes since commit
>40c3ef9d2f14cce91dbd6ae9c9ccf6210d8c5df7:
>> 
>>   staging: comedi: das1800: add missing break in switch (2015-07-31
>16:59:47 -0700)
>> 
>> are available in the git repository at:
>> 
>>   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
>tags/iio-fixes-for-4.2d
>
>Can these wait for 4.3-rc1?  I'd like my last set of pull requests to
>be
>the last one for 4.2.  If it's a big deal, we can mark these for
>-stable
>and get them into 4.2.1?
>
>thanks,
>
>greg k-h
Sure. Can sit for a while.

J

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

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

* Re: [PULL] 4th set of IIO fixes for the 4.2 cycle
  2015-08-11  7:29   ` Jonathan Cameron
@ 2015-08-11 22:42     ` Greg KH
  2015-08-12 18:35       ` Jonathan Cameron
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2015-08-11 22:42 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: Jonathan Cameron, linux-iio

On Tue, Aug 11, 2015 at 08:29:16AM +0100, Jonathan Cameron wrote:
> 
> 
> On 11 August 2015 01:06:10 BST, Greg KH <gregkh@linuxfoundation.org> wrote:
> >On Sat, Aug 08, 2015 at 08:07:26PM +0100, Jonathan Cameron wrote:
> >> The following changes since commit
> >40c3ef9d2f14cce91dbd6ae9c9ccf6210d8c5df7:
> >> 
> >>   staging: comedi: das1800: add missing break in switch (2015-07-31
> >16:59:47 -0700)
> >> 
> >> are available in the git repository at:
> >> 
> >>   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
> >tags/iio-fixes-for-4.2d
> >
> >Can these wait for 4.3-rc1?  I'd like my last set of pull requests to
> >be
> >the last one for 4.2.  If it's a big deal, we can mark these for
> >-stable
> >and get them into 4.2.1?
> >
> >thanks,
> >
> >greg k-h
> Sure. Can sit for a while.

Ok, can you add these to your other pull request for 4.3 and resend that
one?

thanks,

greg k-h

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

* Re: [PULL] 4th set of IIO fixes for the 4.2 cycle
  2015-08-11 22:42     ` Greg KH
@ 2015-08-12 18:35       ` Jonathan Cameron
  0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Cameron @ 2015-08-12 18:35 UTC (permalink / raw)
  To: Greg KH, Jonathan Cameron; +Cc: linux-iio

On 11/08/15 23:42, Greg KH wrote:
> On Tue, Aug 11, 2015 at 08:29:16AM +0100, Jonathan Cameron wrote:
>>
>>
>> On 11 August 2015 01:06:10 BST, Greg KH <gregkh@linuxfoundation.org> wrote:
>>> On Sat, Aug 08, 2015 at 08:07:26PM +0100, Jonathan Cameron wrote:
>>>> The following changes since commit
>>> 40c3ef9d2f14cce91dbd6ae9c9ccf6210d8c5df7:
>>>>
>>>>   staging: comedi: das1800: add missing break in switch (2015-07-31
>>> 16:59:47 -0700)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
>>> tags/iio-fixes-for-4.2d
>>>
>>> Can these wait for 4.3-rc1?  I'd like my last set of pull requests to
>>> be
>>> the last one for 4.2.  If it's a big deal, we can mark these for
>>> -stable
>>> and get them into 4.2.1?
>>>
>>> thanks,
>>>
>>> greg k-h
>> Sure. Can sit for a while.
> 
> Ok, can you add these to your other pull request for 4.3 and resend that
> one?
> 
Coming up shortly.

Jonathan
> thanks,
> 
> greg k-h
> 

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

end of thread, other threads:[~2015-08-12 18:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-08 19:07 [PULL] 4th set of IIO fixes for the 4.2 cycle Jonathan Cameron
2015-08-10 20:00 ` Jonathan Cameron
2015-08-11  0:06 ` Greg KH
2015-08-11  7:29   ` Jonathan Cameron
2015-08-11 22:42     ` Greg KH
2015-08-12 18:35       ` Jonathan Cameron

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.