netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/14] pull-request: can-next 2022-10-31
@ 2022-10-31 15:43 Marc Kleine-Budde
  2022-10-31 15:43 ` [PATCH net-next 01/14] can: peak_usb: rename device_id to a more explicit name Marc Kleine-Budde
                   ` (14 more replies)
  0 siblings, 15 replies; 21+ messages in thread
From: Marc Kleine-Budde @ 2022-10-31 15:43 UTC (permalink / raw)
  To: netdev; +Cc: davem, kuba, linux-can, kernel

Hello Jakub, hello David,

this is a pull request of 14 patches for net-next/master.

The first 7 patches are by Stephane Grosjean and Lukas Magel and
target the peak_usb driver. Support for flashing a user defined device
ID via the ethtool flash interface is added. A read only sysfs
attribute for that value is added to distinguish between devices via
udev.

The next 2 patches are by me an fix minor coding style issues in the
kvaser_usb driver.

The last 5 patches are by Biju Das, target the rcar_canfd driver and
clean up the support for different IP cores.

regards,
Marc

---

The following changes since commit 02a97e02c64fb3245b84835cbbed1c3a3222e2f1:

  Merge tag 'mlx5-updates-2022-10-24' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux (2022-10-28 22:07:48 -0700)

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-6.2-20221031

for you to fetch changes up to 3755b56a9b8ff8f1a6a21a979cc215c220401278:

  Merge patch series "R-Car CAN FD driver enhancements" (2022-10-31 16:15:25 +0100)

----------------------------------------------------------------
linux-can-next-for-6.2-20221031

----------------------------------------------------------------
Biju Das (5):
      can: rcar_canfd: rcar_canfd_probe: Add struct rcar_canfd_hw_info to driver data
      can: rcar_canfd: Add max_channels to struct rcar_canfd_hw_info
      can: rcar_canfd: Add shared_global_irqs to struct rcar_canfd_hw_info
      can: rcar_canfd: Add postdiv to struct rcar_canfd_hw_info
      can: rcar_canfd: Add multi_channel_irqs to struct rcar_canfd_hw_info

Lukas Magel (2):
      can: peak_usb: export PCAN user device ID as sysfs device attribute
      can: peak_usb: align user device id format in log with sysfs attribute

Marc Kleine-Budde (4):
      Merge patch series "can: peak_usb: Introduce configurable user dev id"
      can: kvaser_usb: kvaser_usb_set_bittiming(): fix redundant initialization warning for err
      can: kvaser_usb: kvaser_usb_set_{,data}bittiming(): remove empty lines in variable declaration
      Merge patch series "R-Car CAN FD driver enhancements"

Stephane Grosjean (5):
      can: peak_usb: rename device_id to a more explicit name
      can: peak_usb: add callback to read user value of CANFD devices
      can: peak_usb: allow flashing of the user device id
      can: peak_usb: replace unregister_netdev() with unregister_candev()
      can: peak_usb: add ethtool interface to user defined flashed device number

 Documentation/ABI/testing/sysfs-class-net-peak_usb |  15 +++
 drivers/net/can/rcar/rcar_canfd.c                  |  85 +++++++++------
 drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c   |   4 +-
 drivers/net/can/usb/peak_usb/pcan_usb.c            |  43 ++++++--
 drivers/net/can/usb/peak_usb/pcan_usb_core.c       | 119 +++++++++++++++++++--
 drivers/net/can/usb/peak_usb/pcan_usb_core.h       |  11 +-
 drivers/net/can/usb/peak_usb/pcan_usb_fd.c         |  64 ++++++++++-
 drivers/net/can/usb/peak_usb/pcan_usb_pro.c        |  26 ++++-
 drivers/net/can/usb/peak_usb/pcan_usb_pro.h        |   1 +
 9 files changed, 306 insertions(+), 62 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-net-peak_usb



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

end of thread, other threads:[~2022-11-08 19:08 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-31 15:43 [PATCH net-next 0/14] pull-request: can-next 2022-10-31 Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 01/14] can: peak_usb: rename device_id to a more explicit name Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 02/14] can: peak_usb: add callback to read user value of CANFD devices Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 03/14] can: peak_usb: allow flashing of the user device id Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 04/14] can: peak_usb: replace unregister_netdev() with unregister_candev() Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 05/14] can: peak_usb: add ethtool interface to user defined flashed device number Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 06/14] can: peak_usb: export PCAN user device ID as sysfs device attribute Marc Kleine-Budde
2022-10-31 15:43 ` [PATCH net-next 07/14] can: peak_usb: align user device id format in log with sysfs attribute Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 08/14] can: kvaser_usb: kvaser_usb_set_bittiming(): fix redundant initialization warning for err Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 09/14] can: kvaser_usb: kvaser_usb_set_{,data}bittiming(): remove empty lines in variable declaration Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 10/14] can: rcar_canfd: rcar_canfd_probe: Add struct rcar_canfd_hw_info to driver data Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 11/14] can: rcar_canfd: Add max_channels to struct rcar_canfd_hw_info Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 12/14] can: rcar_canfd: Add shared_global_irqs " Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 13/14] can: rcar_canfd: Add postdiv " Marc Kleine-Budde
2022-10-31 15:44 ` [PATCH net-next 14/14] can: rcar_canfd: Add multi_channel_irqs " Marc Kleine-Budde
2022-11-01  3:27 ` [PATCH net-next 0/14] pull-request: can-next 2022-10-31 Jakub Kicinski
2022-11-01  5:06   ` Greg Kroah-Hartman
2022-11-04 13:08     ` Marc Kleine-Budde
2022-11-04 14:53       ` Greg Kroah-Hartman
2022-11-08 19:07     ` Lukas Magel
2022-11-01  8:26   ` Marc Kleine-Budde

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