linux-can.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull-request: can-next 2020-11-30
@ 2020-11-30 14:14 Marc Kleine-Budde
  2020-11-30 14:14 ` [net-next 01/14] can: pcan_usb_core: fix fall-through warnings for Clang Marc Kleine-Budde
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Marc Kleine-Budde @ 2020-11-30 14:14 UTC (permalink / raw)
  To: netdev; +Cc: davem, kuba, linux-can, kernel

Hello Jakub, hello David,

here's a pull request of 14 patches for net-next/master.

Gustavo A. R. Silva's patch for the pcan_usb driver fixes fall-through warnings 
for Clang.

The next 5 patches target the mcp251xfd driver and are by Ursula Maplehurst and 
me. They optimizie the TEF and RX path by reducing number of SPI core requests
to set the UINC bit.

The remaining 8 patches target the m_can driver. The first 4 are various
cleanups for the SPI binding driver (tcan4x5x) by Sean Nyekjaer, Dan Murphy and
me. Followed by 4 cleanup patches by me for the m_can and m_can_platform
driver.

regards,
Marc

---

The following changes since commit e71d2b957ee49fe3ed35a384a4e31774de1316c1:

  Merge branch 'net-ipa-start-adding-ipa-v4-5-support' (2020-11-28 12:14:02 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git tags/linux-can-next-for-5.11-20201130

for you to fetch changes up to 6d9986b46fc12f4a36fc243698deb774323b76f3:

  can: m_can: m_can_class_unregister(): move right after m_can_class_register() (2020-11-30 14:55:41 +0100)

----------------------------------------------------------------
linux-can-next-for-5.11-20201130

----------------------------------------------------------------
Dan Murphy (1):
      can: tcan4x5x: rename parse_config() function

Gustavo A. R. Silva (1):
      can: pcan_usb_core: fix fall-through warnings for Clang

Marc Kleine-Budde (10):
      can: mcp251xfd: mcp25xxfd_ring_alloc(): add define instead open coding the maximum number of RX objects
      can: mcp251xfd: struct mcp251xfd_priv::tef to array of length 1
      can: mcp251xfd: move struct mcp251xfd_tef_ring definition
      can: mcp251xfd: tef-path: reduce number of SPI core requests to set UINC bit
      can: tcan4x5x: remove mram_start and reg_offset from struct tcan4x5x_priv
      can: tcan4x5x: tcan4x5x_can_probe(): remove probe failed error message
      can: m_can: Kconfig: convert the into menu
      can: m_can: remove not used variable struct m_can_classdev::freq
      can: m_can: m_can_plat_remove(): remove unneeded platform_set_drvdata()
      can: m_can: m_can_class_unregister(): move right after m_can_class_register()

Sean Nyekjaer (1):
      can: tcan4x5x: tcan4x5x_clear_interrupts(): remove redundant return statement

Ursula Maplehurst (1):
      can: mcp25xxfd: rx-path: reduce number of SPI core requests to set UINC bit

 drivers/net/can/m_can/Kconfig                  |   8 +-
 drivers/net/can/m_can/m_can.c                  |  16 +--
 drivers/net/can/m_can/m_can.h                  |   1 -
 drivers/net/can/m_can/m_can_platform.c         |   2 -
 drivers/net/can/m_can/tcan4x5x.c               |  28 ++---
 drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c | 136 +++++++++++++++++++------
 drivers/net/can/spi/mcp251xfd/mcp251xfd.h      |  30 +++---
 drivers/net/can/usb/peak_usb/pcan_usb_core.c   |   9 +-
 8 files changed, 151 insertions(+), 79 deletions(-)



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

end of thread, other threads:[~2020-12-01  3:09 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-30 14:14 pull-request: can-next 2020-11-30 Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 01/14] can: pcan_usb_core: fix fall-through warnings for Clang Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 02/14] can: mcp251xfd: mcp25xxfd_ring_alloc(): add define instead open coding the maximum number of RX objects Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 03/14] can: mcp25xxfd: rx-path: reduce number of SPI core requests to set UINC bit Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 04/14] can: mcp251xfd: struct mcp251xfd_priv::tef to array of length 1 Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 05/14] can: mcp251xfd: move struct mcp251xfd_tef_ring definition Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 06/14] can: mcp251xfd: tef-path: reduce number of SPI core requests to set UINC bit Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 07/14] can: tcan4x5x: tcan4x5x_clear_interrupts(): remove redundant return statement Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 08/14] can: tcan4x5x: rename parse_config() function Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 09/14] can: tcan4x5x: remove mram_start and reg_offset from struct tcan4x5x_priv Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 10/14] can: tcan4x5x: tcan4x5x_can_probe(): remove probe failed error message Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 11/14] can: m_can: Kconfig: convert the into menu Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 12/14] can: m_can: remove not used variable struct m_can_classdev::freq Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 13/14] can: m_can: m_can_plat_remove(): remove unneeded platform_set_drvdata() Marc Kleine-Budde
2020-11-30 14:14 ` [net-next 14/14] can: m_can: m_can_class_unregister(): move right after m_can_class_register() Marc Kleine-Budde
2020-12-01  3:08 ` pull-request: can-next 2020-11-30 Jakub Kicinski

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).