All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] USB-serial updates for 5.15-rc1
@ 2021-08-31 10:14 Johan Hovold
  2021-09-01 14:18 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Johan Hovold @ 2021-08-31 10:14 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-usb

The following changes since commit ff1176468d368232b684f75e82563369208bc371:

  Linux 5.14-rc3 (2021-07-25 15:35:14 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git tags/usb-serial-5.15-rc1-2

for you to fetch changes up to a65ab973c1669d3edc27719527bb3906f7b09918:

  USB: serial: replace symbolic permissions by octal permissions (2021-08-26 09:38:27 +0200)

----------------------------------------------------------------
USB-serial updates for 5.15-rc1

Here are the USB serial updates for 5.15-rc1, including:

 - a couple of fixes for cp210x termios error handling
 - retrieval of fw revisions for more cp210x types
 - a switch to octal permissions for all module-parameter definitions

Included are also various clean ups.

All have been in linux-next with no reported issues.

----------------------------------------------------------------
Johan Hovold (7):
      USB: serial: io_edgeport: drop unused descriptor helper
      USB: serial: cp210x: fix control-characters error handling
      USB: serial: cp210x: fix flow-control error handling
      USB: serial: cp210x: clean up control-request timeout
      USB: serial: cp210x: clean up set-chars request
      USB: serial: cp210x: clean up type detection
      USB: serial: cp210x: determine fw version for CP2105 and CP2108

Utkarsh Verma (1):
      USB: serial: replace symbolic permissions by octal permissions

 drivers/usb/serial/cp210x.c      | 77 +++++++++++++++++-----------------------
 drivers/usb/serial/cypress_m8.c  |  6 ++--
 drivers/usb/serial/ftdi_sio.c    |  2 +-
 drivers/usb/serial/garmin_gps.c  |  2 +-
 drivers/usb/serial/io_edgeport.c | 33 -----------------
 drivers/usb/serial/io_ti.c       |  4 +--
 drivers/usb/serial/ipaq.c        |  4 +--
 drivers/usb/serial/iuu_phoenix.c | 10 +++---
 drivers/usb/serial/sierra.c      |  2 +-
 9 files changed, 47 insertions(+), 93 deletions(-)

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

* Re: [GIT PULL] USB-serial updates for 5.15-rc1
  2021-08-31 10:14 [GIT PULL] USB-serial updates for 5.15-rc1 Johan Hovold
@ 2021-09-01 14:18 ` Greg Kroah-Hartman
  2021-09-01 18:11   ` Greg Kroah-Hartman
  2021-09-02  7:27   ` Johan Hovold
  0 siblings, 2 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2021-09-01 14:18 UTC (permalink / raw)
  To: Johan Hovold; +Cc: linux-usb

On Tue, Aug 31, 2021 at 12:14:05PM +0200, Johan Hovold wrote:
> The following changes since commit ff1176468d368232b684f75e82563369208bc371:
> 
>   Linux 5.14-rc3 (2021-07-25 15:35:14 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git tags/usb-serial-5.15-rc1-2
> 
> for you to fetch changes up to a65ab973c1669d3edc27719527bb3906f7b09918:
> 
>   USB: serial: replace symbolic permissions by octal permissions (2021-08-26 09:38:27 +0200)
> 
> ----------------------------------------------------------------
> USB-serial updates for 5.15-rc1
> 
> Here are the USB serial updates for 5.15-rc1, including:
> 
>  - a couple of fixes for cp210x termios error handling
>  - retrieval of fw revisions for more cp210x types
>  - a switch to octal permissions for all module-parameter definitions
> 
> Included are also various clean ups.
> 
> All have been in linux-next with no reported issues.
> 

Ugh, this was late, I'll pull this in after Linus takes the request I
just sent him...

thanks,

greg k-h

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

* Re: [GIT PULL] USB-serial updates for 5.15-rc1
  2021-09-01 14:18 ` Greg Kroah-Hartman
@ 2021-09-01 18:11   ` Greg Kroah-Hartman
  2021-09-02  7:27   ` Johan Hovold
  1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2021-09-01 18:11 UTC (permalink / raw)
  To: Johan Hovold; +Cc: linux-usb

On Wed, Sep 01, 2021 at 04:18:18PM +0200, Greg Kroah-Hartman wrote:
> On Tue, Aug 31, 2021 at 12:14:05PM +0200, Johan Hovold wrote:
> > The following changes since commit ff1176468d368232b684f75e82563369208bc371:
> > 
> >   Linux 5.14-rc3 (2021-07-25 15:35:14 -0700)
> > 
> > are available in the Git repository at:
> > 
> >   https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git tags/usb-serial-5.15-rc1-2
> > 
> > for you to fetch changes up to a65ab973c1669d3edc27719527bb3906f7b09918:
> > 
> >   USB: serial: replace symbolic permissions by octal permissions (2021-08-26 09:38:27 +0200)
> > 
> > ----------------------------------------------------------------
> > USB-serial updates for 5.15-rc1
> > 
> > Here are the USB serial updates for 5.15-rc1, including:
> > 
> >  - a couple of fixes for cp210x termios error handling
> >  - retrieval of fw revisions for more cp210x types
> >  - a switch to octal permissions for all module-parameter definitions
> > 
> > Included are also various clean ups.
> > 
> > All have been in linux-next with no reported issues.
> > 
> 
> Ugh, this was late, I'll pull this in after Linus takes the request I
> just sent him...

Now pulled into my tree, thanks.

greg k-h

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

* Re: [GIT PULL] USB-serial updates for 5.15-rc1
  2021-09-01 14:18 ` Greg Kroah-Hartman
  2021-09-01 18:11   ` Greg Kroah-Hartman
@ 2021-09-02  7:27   ` Johan Hovold
  1 sibling, 0 replies; 4+ messages in thread
From: Johan Hovold @ 2021-09-02  7:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-usb

On Wed, Sep 01, 2021 at 04:18:18PM +0200, Greg Kroah-Hartman wrote:
> On Tue, Aug 31, 2021 at 12:14:05PM +0200, Johan Hovold wrote:

> > USB-serial updates for 5.15-rc1
> > 
> > Here are the USB serial updates for 5.15-rc1, including:
> > 
> >  - a couple of fixes for cp210x termios error handling
> >  - retrieval of fw revisions for more cp210x types
> >  - a switch to octal permissions for all module-parameter definitions
> > 
> > Included are also various clean ups.
> > 
> > All have been in linux-next with no reported issues.
> > 
> 
> Ugh, this was late, I'll pull this in after Linus takes the request I
> just sent him...

Sorry about that. I wanted to include the late pl2303 fix to make sure
it made it into -rc1, but in the end I sent that one separately to avoid
a back merge.

Johan

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

end of thread, other threads:[~2021-09-02  7:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-31 10:14 [GIT PULL] USB-serial updates for 5.15-rc1 Johan Hovold
2021-09-01 14:18 ` Greg Kroah-Hartman
2021-09-01 18:11   ` Greg Kroah-Hartman
2021-09-02  7:27   ` Johan Hovold

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.