netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull-request: can-next 2017-03-03
@ 2017-03-03 14:04 Marc Kleine-Budde
  2017-03-03 17:11 ` pull-request: can-next 2017-03-03,pull-request: " David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Marc Kleine-Budde @ 2017-03-03 14:04 UTC (permalink / raw)
  To: netdev; +Cc: David Miller, kernel@pengutronix.de, linux-can@vger.kernel.org


[-- Attachment #1.1: Type: text/plain, Size: 1861 bytes --]

Hello David,

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

The patches are by Yegor Yefremov and convert the ti_hecc driver into a
DT only driver, as there is no in-tree user of the old platform driver
interface anymore.

regards,
Marc

---

The following changes since commit 2d6be4abf514fc26c83d239c7f31da1f95e4a31d:

  Merge tag 'for-linus-4.11' of git://git.code.sf.net/p/openipmi/linux-ipmi (2017-02-28 21:06:30 -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-4.12-20170303

for you to fetch changes up to b08bb1376263026cb947923ed6c559addb908be6:

  can: ti_hecc: Convert TI HECC driver to DT only driver (2017-03-03 15:01:16 +0100)

----------------------------------------------------------------
linux-can-next-for-4.12-20170303

----------------------------------------------------------------
Yegor Yefremov (3):
      ARM: dts: AM35x: Add hecc node
      can: ti_hecc: Add TI HECC DT binding documentation
      can: ti_hecc: Convert TI HECC driver to DT only driver

 .../devicetree/bindings/net/can/ti_hecc.txt        |  32 ++++
 arch/arm/boot/dts/am3517.dtsi                      |  12 ++
 drivers/net/can/ti_hecc.c                          | 170 +++++++++++----------
 include/linux/can/platform/ti_hecc.h               |  44 ------
 4 files changed, 132 insertions(+), 126 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/can/ti_hecc.txt
 delete mode 100644 include/linux/can/platform/ti_hecc.h

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread
* pull-request: can-next 2017-03-03
@ 2017-04-04 15:47 Marc Kleine-Budde
  2017-04-05 16:57 ` pull-request: can-next 2017-03-03,pull-request: " David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Marc Kleine-Budde @ 2017-04-04 15:47 UTC (permalink / raw)
  To: netdev; +Cc: David Miller, kernel@pengutronix.de, linux-can@vger.kernel.org


[-- Attachment #1.1: Type: text/plain, Size: 3093 bytes --]

Hello David,

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

There are two patches by Yegor Yefremov which convert the ti_hecc
driver into a DT only driver, as there is no in-tree user of the old
platform driver interface anymore. The next patch by Mario Kicherer
adds network namespace support to the can subsystem. The last two
patches by Akshay Bhat add support for the holt_hi311x SPI CAN driver.

regards,
Marc

---

The following changes since commit 822f9bb104c9d1d2dea3669f1941558c6304cf92:

  soreuseport: use "unsigned int" in __reuseport_alloc() (2017-04-03 19:06:38 -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-4.13-20170404

for you to fetch changes up to 57e83fb9b7468c75cb65cde1d23043553c346c6d:

  can: hi311x: Add Holt HI-311x CAN driver (2017-04-04 17:35:59 +0200)

----------------------------------------------------------------
linux-can-next-for-4.13-20170404

----------------------------------------------------------------
Akshay Bhat (2):
      can: holt_hi311x: document device tree bindings
      can: hi311x: Add Holt HI-311x CAN driver

Mario Kicherer (1):
      can: initial support for network namespaces

Yegor Yefremov (2):
      can: ti_hecc: Add TI HECC DT binding documentation
      can: ti_hecc: Convert TI HECC driver to DT only driver

 .../devicetree/bindings/net/can/holt_hi311x.txt    |   24 +
 .../devicetree/bindings/net/can/ti_hecc.txt        |   32 +
 drivers/net/can/spi/Kconfig                        |    6 +
 drivers/net/can/spi/Makefile                       |    1 +
 drivers/net/can/spi/hi311x.c                       | 1076 ++++++++++++++++++++
 drivers/net/can/ti_hecc.c                          |  170 ++--
 include/linux/can/core.h                           |    7 +-
 include/linux/can/platform/ti_hecc.h               |   44 -
 include/net/net_namespace.h                        |    4 +
 include/net/netns/can.h                            |   31 +
 net/can/af_can.c                                   |  122 ++-
 net/can/af_can.h                                   |    4 +-
 net/can/bcm.c                                      |   13 +-
 net/can/gw.c                                       |    4 +-
 net/can/proc.c                                     |  144 ++-
 net/can/raw.c                                      |   92 +-
 16 files changed, 1469 insertions(+), 305 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/can/holt_hi311x.txt
 create mode 100644 Documentation/devicetree/bindings/net/can/ti_hecc.txt
 create mode 100644 drivers/net/can/spi/hi311x.c
 delete mode 100644 include/linux/can/platform/ti_hecc.h
 create mode 100644 include/net/netns/can.h

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

end of thread, other threads:[~2017-04-05 16:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-03 14:04 pull-request: can-next 2017-03-03 Marc Kleine-Budde
2017-03-03 17:11 ` pull-request: can-next 2017-03-03,pull-request: " David Miller
  -- strict thread matches above, loose matches on Subject: below --
2017-04-04 15:47 pull-request: " Marc Kleine-Budde
2017-04-05 16:57 ` pull-request: can-next 2017-03-03,pull-request: " David Miller

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