netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull-request: can-next 2014-05-19
@ 2014-05-19  7:46 Marc Kleine-Budde
  2014-05-21  6:01 ` David Miller
  2014-05-31 15:38 ` Thanks! " Max S.
  0 siblings, 2 replies; 3+ messages in thread
From: Marc Kleine-Budde @ 2014-05-19  7:46 UTC (permalink / raw)
  To: netdev; +Cc: David Miller, linux-can, kernel

[-- Attachment #1: Type: text/plain, Size: 4319 bytes --]

Hello David,

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

A patch by Dan Carpenter fixes a coccinelle warning in the mcp251x
driver. Jean Delvare contributes three patches to tightening the
Kconfig dependencies for some drivers. Then come three patches by Pavel
Machek that improve the c_can driver support on the socfpga platform.
Sergei Shtylyov's patch brings support for the CAN hardware found on
Renesas R-Car CAN controllers. Four patches by Oliver Hartkopp, the
first cleans up the guard macros in the CAN headers the other three
improve the EFF frame filtering. Maximilian Schneider's patch adds
support for the GS_USB CAN devices.

Marc

---
The following changes since commit b6052af61a9e0dee236bcf4c69843126c0d28e4f:

  Merge tag 'batman-adv-for-davem' of git://git.open-mesh.org/linux-merge (2014-05-18 21:27:09 -0400)

are available in the git repository at:


  git://gitorious.org/linux-can/linux-can-next.git linux-can-next-for-3.16-20140519

for you to fetch changes up to d08e973a77d128b25e01a08c34d89593fdf222da:

  can: gs_usb: Added support for the GS_USB CAN devices (2014-05-19 09:38:25 +0200)

----------------------------------------------------------------
linux-can-next-for-3.16-20140519

----------------------------------------------------------------
Dan Carpenter (1):
      can: mcp251x: fix coccinelle warnings

Jean Delvare (3):
      can: at91_can: Fix Kconfig dependencies
      can: mscan: Fix Kconfig dependencies
      can: pch_can: Fix Kconfig dependencies

Maximilian Schneider (1):
      can: gs_usb: Added support for the GS_USB CAN devices

Oliver Hartkopp (4):
      can: unify identifiers to ensure unique include processing
      can: proc: make array printing function indenpendent from sff frames
      can: add hash based access to single EFF frame filters
      can: add documentation for CAN filter usage optimisation

Pavel Machek (3):
      can: c_can: make {read,write}_reg functions const
      can: c_can: Add and make use of 32-bit accesses functions
      can: c_can: add hwinit support for non-TI devices

Sergei Shtylyov (1):
      can: add Renesas R-Car CAN driver

 Documentation/networking/can.txt       |  35 ++
 drivers/net/can/Kconfig                |  14 +-
 drivers/net/can/Makefile               |   1 +
 drivers/net/can/c_can/c_can.c          |  15 +-
 drivers/net/can/c_can/c_can.h          |   8 +-
 drivers/net/can/c_can/c_can_pci.c      |  31 +-
 drivers/net/can/c_can/c_can_platform.c |  84 ++-
 drivers/net/can/mscan/Kconfig          |   2 +-
 drivers/net/can/rcar_can.c             | 876 +++++++++++++++++++++++++++++
 drivers/net/can/spi/mcp251x.c          |   2 +-
 drivers/net/can/usb/Kconfig            |   8 +
 drivers/net/can/usb/Makefile           |   1 +
 drivers/net/can/usb/gs_usb.c           | 971 +++++++++++++++++++++++++++++++++
 include/linux/can/core.h               |   6 +-
 include/linux/can/dev.h                |   6 +-
 include/linux/can/led.h                |   6 +-
 include/linux/can/platform/cc770.h     |   6 +-
 include/linux/can/platform/mcp251x.h   |   6 +-
 include/linux/can/platform/rcar_can.h  |  17 +
 include/linux/can/platform/sja1000.h   |   6 +-
 include/linux/can/platform/ti_hecc.h   |   6 +-
 include/linux/can/skb.h                |   6 +-
 include/uapi/linux/can.h               |   6 +-
 include/uapi/linux/can/bcm.h           |   6 +-
 include/uapi/linux/can/error.h         |   6 +-
 include/uapi/linux/can/gw.h            |   6 +-
 include/uapi/linux/can/netlink.h       |   6 +-
 include/uapi/linux/can/raw.h           |   6 +-
 net/can/af_can.c                       |  31 +-
 net/can/af_can.h                       |   9 +-
 net/can/proc.c                         |  76 ++-
 31 files changed, 2170 insertions(+), 95 deletions(-)
 create mode 100644 drivers/net/can/rcar_can.c
 create mode 100644 drivers/net/can/usb/gs_usb.c
 create mode 100644 include/linux/can/platform/rcar_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: 242 bytes --]

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

* Re: pull-request: can-next 2014-05-19
  2014-05-19  7:46 pull-request: can-next 2014-05-19 Marc Kleine-Budde
@ 2014-05-21  6:01 ` David Miller
  2014-05-31 15:38 ` Thanks! " Max S.
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2014-05-21  6:01 UTC (permalink / raw)
  To: mkl; +Cc: netdev, linux-can, kernel

From: Marc Kleine-Budde <mkl@pengutronix.de>
Date: Mon, 19 May 2014 09:46:22 +0200

> this is a pull request of 13 patches for net-next/master.
> 
> A patch by Dan Carpenter fixes a coccinelle warning in the mcp251x
> driver. Jean Delvare contributes three patches to tightening the
> Kconfig dependencies for some drivers. Then come three patches by Pavel
> Machek that improve the c_can driver support on the socfpga platform.
> Sergei Shtylyov's patch brings support for the CAN hardware found on
> Renesas R-Car CAN controllers. Four patches by Oliver Hartkopp, the
> first cleans up the guard macros in the CAN headers the other three
> improve the EFF frame filtering. Maximilian Schneider's patch adds
> support for the GS_USB CAN devices.

Pulled, thank you.

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

* Thanks! Re: pull-request: can-next 2014-05-19
  2014-05-19  7:46 pull-request: can-next 2014-05-19 Marc Kleine-Budde
  2014-05-21  6:01 ` David Miller
@ 2014-05-31 15:38 ` Max S.
  1 sibling, 0 replies; 3+ messages in thread
From: Max S. @ 2014-05-31 15:38 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: netdev, David Miller, linux-can, kernel

Hello all.
Thanks allot for all the help on getting this driver this far.

I've got two tethered units I'm be willing to give away. So if any of
the people who helped me with this project are interested, send me an
address to ship to. If you are interested, please make sure you have a
use for the device :)

Again thanks to all the people involved. Especially Marc, Oliver, and
Wolfgang.

Regards,
Maximilian Schneider.

On Mon, 2014-05-19 at 09:46 +0200, Marc Kleine-Budde wrote:
> Hello David,
> 
> this is a pull request of 13 patches for net-next/master.
> 
> A patch by Dan Carpenter fixes a coccinelle warning in the mcp251x
> driver. Jean Delvare contributes three patches to tightening the
> Kconfig dependencies for some drivers. Then come three patches by Pavel
> Machek that improve the c_can driver support on the socfpga platform.
> Sergei Shtylyov's patch brings support for the CAN hardware found on
> Renesas R-Car CAN controllers. Four patches by Oliver Hartkopp, the
> first cleans up the guard macros in the CAN headers the other three
> improve the EFF frame filtering. Maximilian Schneider's patch adds
> support for the GS_USB CAN devices.
> 
> Marc
> 



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

end of thread, other threads:[~2014-05-31 15:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-19  7:46 pull-request: can-next 2014-05-19 Marc Kleine-Budde
2014-05-21  6:01 ` David Miller
2014-05-31 15:38 ` Thanks! " Max S.

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