All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] 2nd set of IIO fixes for the 5.12 cycle
@ 2021-04-05 14:20 Jonathan Cameron
  2021-04-05 16:59 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Cameron @ 2021-04-05 14:20 UTC (permalink / raw)
  To: gregkh, linux-iio

The following changes since commit 0d02ec6b3136c73c09e7859f0d0e4e2c4c07b49b:

  Linux 5.12-rc4 (2021-03-21 14:56:43 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.12b

for you to fetch changes up to 8aab53b7fb3668fdbed9fcdb41780040ef7e6a56:

  iio: sx9310: Fix write_.._debounce() (2021-04-01 14:21:10 +0100)

----------------------------------------------------------------
2nd set of IIO fixes for the 5.12 cycle

* adi,ad9467
  - Fix a HAS_IOMEM kconfig dependency issue.
* semtech,sx9310
  - Add missing sanity checks on debouce writes.
  - Fix access to variable sized DT array.
* yamaha,yas530
  - Fix a missing return value in erorr path.
  - Include asm/unaligned.h rather than be_byteshift.h.

----------------------------------------------------------------
Alexandru Ardelean (1):
      iio: adc: Kconfig: make AD9467 depend on ADI_AXI_ADC symbol

Gwendal Grignou (2):
      iio: sx9310: Fix access to variable DT array
      iio: sx9310: Fix write_.._debounce()

Linus Walleij (2):
      iio: magnetometer: yas530: Fix return value on errorpath
      iio: magnetometer: yas530: Inlucde right header

 drivers/iio/adc/Kconfig                  |  2 +-
 drivers/iio/magnetometer/yamaha-yas530.c |  4 ++-
 drivers/iio/proximity/sx9310.c           | 52 +++++++++++++++++++++++---------
 3 files changed, 42 insertions(+), 16 deletions(-)

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

* Re: [PULL] 2nd set of IIO fixes for the 5.12 cycle
  2021-04-05 14:20 [PULL] 2nd set of IIO fixes for the 5.12 cycle Jonathan Cameron
@ 2021-04-05 16:59 ` Greg KH
  2021-04-05 21:00   ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2021-04-05 16:59 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: linux-iio

On Mon, Apr 05, 2021 at 03:20:57PM +0100, Jonathan Cameron wrote:
> The following changes since commit 0d02ec6b3136c73c09e7859f0d0e4e2c4c07b49b:
> 
>   Linux 5.12-rc4 (2021-03-21 14:56:43 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.12b

It's late, it's -rc6, are these really needed for 5.12-final or can they
wait for 5.13-rc1?

thanks,

greg k-h

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

* Re: [PULL] 2nd set of IIO fixes for the 5.12 cycle
  2021-04-05 16:59 ` Greg KH
@ 2021-04-05 21:00   ` Jonathan Cameron
  2021-04-06  7:17     ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Cameron @ 2021-04-05 21:00 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-iio

On Mon, 5 Apr 2021 18:59:52 +0200
Greg KH <gregkh@linuxfoundation.org> wrote:

> On Mon, Apr 05, 2021 at 03:20:57PM +0100, Jonathan Cameron wrote:
> > The following changes since commit 0d02ec6b3136c73c09e7859f0d0e4e2c4c07b49b:
> > 
> >   Linux 5.12-rc4 (2021-03-21 14:56:43 -0700)
> > 
> > are available in the Git repository at:
> > 
> >   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.12b  
> 
> It's late, it's -rc6, are these really needed for 5.12-final or can they
> wait for 5.13-rc1?
> 
> thanks,
> 
> greg k-h

They can wait.

Thanks,

Jonathan

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

* Re: [PULL] 2nd set of IIO fixes for the 5.12 cycle
  2021-04-05 21:00   ` Jonathan Cameron
@ 2021-04-06  7:17     ` Greg KH
  2021-04-06  8:25       ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2021-04-06  7:17 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: linux-iio

On Mon, Apr 05, 2021 at 10:00:29PM +0100, Jonathan Cameron wrote:
> On Mon, 5 Apr 2021 18:59:52 +0200
> Greg KH <gregkh@linuxfoundation.org> wrote:
> 
> > On Mon, Apr 05, 2021 at 03:20:57PM +0100, Jonathan Cameron wrote:
> > > The following changes since commit 0d02ec6b3136c73c09e7859f0d0e4e2c4c07b49b:
> > > 
> > >   Linux 5.12-rc4 (2021-03-21 14:56:43 -0700)
> > > 
> > > are available in the Git repository at:
> > > 
> > >   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.12b  
> > 
> > It's late, it's -rc6, are these really needed for 5.12-final or can they
> > wait for 5.13-rc1?
> > 
> > thanks,
> > 
> > greg k-h
> 
> They can wait.

Ok, want me to pull it into my "next" branch then?

thanks,

greg k-h

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

* Re: [PULL] 2nd set of IIO fixes for the 5.12 cycle
  2021-04-06  7:17     ` Greg KH
@ 2021-04-06  8:25       ` Jonathan Cameron
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Cameron @ 2021-04-06  8:25 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-iio

On Tue, 6 Apr 2021 09:17:24 +0200
Greg KH <gregkh@linuxfoundation.org> wrote:

> On Mon, Apr 05, 2021 at 10:00:29PM +0100, Jonathan Cameron wrote:
> > On Mon, 5 Apr 2021 18:59:52 +0200
> > Greg KH <gregkh@linuxfoundation.org> wrote:
> >   
> > > On Mon, Apr 05, 2021 at 03:20:57PM +0100, Jonathan Cameron wrote:  
> > > > The following changes since commit 0d02ec6b3136c73c09e7859f0d0e4e2c4c07b49b:
> > > > 
> > > >   Linux 5.12-rc4 (2021-03-21 14:56:43 -0700)
> > > > 
> > > > are available in the Git repository at:
> > > > 
> > > >   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git tags/iio-fixes-for-5.12b    
> > > 
> > > It's late, it's -rc6, are these really needed for 5.12-final or can they
> > > wait for 5.13-rc1?
> > > 
> > > thanks,
> > > 
> > > greg k-h  
> > 
> > They can wait.  
> 
> Ok, want me to pull it into my "next" branch then?

I'll add them to a pull request I should be sending out later today or
tomorrow.

A couple of them will want stable tags (which didn't make sense
when the fixes were for things in the 5.12 cycle).

Jonathan

> 
> thanks,
> 
> greg k-h


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

end of thread, other threads:[~2021-04-06  8:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-05 14:20 [PULL] 2nd set of IIO fixes for the 5.12 cycle Jonathan Cameron
2021-04-05 16:59 ` Greg KH
2021-04-05 21:00   ` Jonathan Cameron
2021-04-06  7:17     ` Greg KH
2021-04-06  8:25       ` 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.