From: Marc Kleine-Budde <mkl@pengutronix.de>
To: Stephane Grosjean <s.grosjean@peak-system.com>
Cc: Oliver Hartkopp <socketcan@hartkopp.net>,
linux-can Mailing List <linux-can@vger.kernel.org>
Subject: Re: [PATCH 1/2] can/peak_pci: add support of some new PEAK-System PCI cards
Date: Thu, 01 Mar 2012 18:12:16 +0100 [thread overview]
Message-ID: <4F4FADF0.3070401@pengutronix.de> (raw)
In-Reply-To: <1330357923-14080-1-git-send-email-s.grosjean@peak-system.com>
[-- Attachment #1: Type: text/plain, Size: 3475 bytes --]
On 02/27/2012 04:52 PM, Stephane Grosjean wrote:
> This patch adds the support of some new PEAK-System PCI cards in the CAN
> network sub-system. These are:
>
> PCAN-PCIeC (PCI-ExpressCard)
> PCAN-mminiPCI (mini-PCI)
> PCAN-PCI (PCI next-gen)
>
> This patch also adds the control of the blinking leds of the PCAN-PCIeC.
>
> Tested-by: Oliver Hartkopp <socketcan@hartkopp.net>
> Acked-by: Wolfgang Grandegger <wg@grandegger.com>
> Signed-off-by: Stephane Grosjean <s.grosjean@peak-system.com>
> ---
> Note: that patch contains modifications tested and approved in
> peak_pci v6.1 but also includes Kconfig and Makefile modifications
> from peak_pcmcia v4.1
>
> drivers/net/can/sja1000/Kconfig | 27 ++-
> drivers/net/can/sja1000/Makefile | 1 +
> drivers/net/can/sja1000/peak_pci.c | 505 +++++++++++++++++++++++++++++++++++-
> 3 files changed, 516 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/net/can/sja1000/Kconfig b/drivers/net/can/sja1000/Kconfig
> index b21523d..b60d6c5 100644
> --- a/drivers/net/can/sja1000/Kconfig
> +++ b/drivers/net/can/sja1000/Kconfig
> @@ -43,12 +43,33 @@ config CAN_EMS_PCI
> CPC-PCIe and CPC-104P cards from EMS Dr. Thomas Wuensche
> (http://www.ems-wuensche.de).
>
> +config CAN_PEAK_PCMCIA
> + tristate "PEAK PCAN-PC Card"
> + depends on PCMCIA
> + ---help---
> + This driver is for the PCAN-PC Card PCMCIA adapter (1 or 2 channels)
> + from PEAK-System (http://www.peak-system.com). To compile this
> + driver as a module, choose M here: the module will be called
> + peak_pcmcia.
> +
> config CAN_PEAK_PCI
> - tristate "PEAK PCAN PCI/PCIe Cards"
> + tristate "PEAK PCAN-PCI/PCIe/miniPCI Cards"
> depends on PCI
> ---help---
> - This driver is for the PCAN PCI/PCIe cards (1, 2, 3 or 4 channels)
> - from PEAK Systems (http://www.peak-system.com).
> + This driver is for the PCAN-PCI/PCIe/miniPCI cards
> + (1, 2, 3 or 4 channels) from PEAK-System Technik
> + (http://www.peak-system.com).
> +
> +config CAN_PEAK_PCIEC
> + bool "PEAK PCAN-ExpressCard Cards"
> + depends on CAN_PEAK_PCI
> + select I2C
> + select I2C_ALGOBIT
> + default y
> + ---help---
> + Say Y here if you want to use a PCAN-ExpressCard from PEAK-System
> + Technik. This will also automatically select I2C and I2C_ALGO
> + configuration options.
>
> config CAN_KVASER_PCI
> tristate "Kvaser PCIcanx and Kvaser PCIcan PCI Cards"
> diff --git a/drivers/net/can/sja1000/Makefile b/drivers/net/can/sja1000/Makefile
> index 0604f24..b3d05cb 100644
> --- a/drivers/net/can/sja1000/Makefile
> +++ b/drivers/net/can/sja1000/Makefile
> @@ -9,6 +9,7 @@ obj-$(CONFIG_CAN_SJA1000_OF_PLATFORM) += sja1000_of_platform.o
> obj-$(CONFIG_CAN_EMS_PCMCIA) += ems_pcmcia.o
> obj-$(CONFIG_CAN_EMS_PCI) += ems_pci.o
> obj-$(CONFIG_CAN_KVASER_PCI) += kvaser_pci.o
> +obj-$(CONFIG_CAN_PEAK_PCMCIA) += peak_pcmcia.o
> obj-$(CONFIG_CAN_PEAK_PCI) += peak_pci.o
> obj-$(CONFIG_CAN_PLX_PCI) += plx_pci.o
> obj-$(CONFIG_CAN_TSCAN1) += tscan1.o
Sorry, that series is not bisectable. At least if you switch on the
CONFIG_CAN_PEAK_PCMCIA option.
Marc
--
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: 262 bytes --]
next prev parent reply other threads:[~2012-03-01 17:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-27 15:52 [PATCH 1/2] can/peak_pci: add support of some new PEAK-System PCI cards Stephane Grosjean
2012-03-01 17:12 ` Marc Kleine-Budde [this message]
2012-03-01 17:18 ` Oliver Hartkopp
2012-03-01 17:27 ` Marc Kleine-Budde
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F4FADF0.3070401@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=linux-can@vger.kernel.org \
--cc=s.grosjean@peak-system.com \
--cc=socketcan@hartkopp.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.