All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH can] peak_pci: add PCI ID definition pcie card variant
@ 2014-09-16  8:05 Oliver Hartkopp
  2014-09-16 13:05 ` Stephane Grosjean
  2014-09-16 14:01 ` Marc Kleine-Budde
  0 siblings, 2 replies; 4+ messages in thread
From: Oliver Hartkopp @ 2014-09-16  8:05 UTC (permalink / raw)
  To: Marc Kleine-Budde, Stephane Grosjean; +Cc: linux-can

Add PCI ID definition for the single channel PCAN ExpressCard 34 adapter.
Due to the subsystem id evaluation the correct number of channels (here 1)
is created at initialization time. Tested including the LED functionality.

Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
CC: Stephane Grosjean <s.grosjean@peak-system.com>

---

Hi Marc,

as this is 'just a PCI ID definition' this patch should go into Daves
net-tree for 3.17-rc upstream. The USB guys do it the same as there is no
risk of breaking other peoples work at that stage.

Tnx,
Oliver



diff --git a/drivers/net/can/sja1000/peak_pci.c b/drivers/net/can/sja1000/peak_pci.c
index 7a85590..e5fac36 100644
--- a/drivers/net/can/sja1000/peak_pci.c
+++ b/drivers/net/can/sja1000/peak_pci.c
@@ -70,6 +70,8 @@ struct peak_pci_chan {
 #define PEAK_PC_104P_DEVICE_ID	0x0006	/* PCAN-PC/104+ cards */
 #define PEAK_PCI_104E_DEVICE_ID	0x0007	/* PCAN-PCI/104 Express cards */
 #define PEAK_MPCIE_DEVICE_ID	0x0008	/* The miniPCIe slot cards */
+#define PEAK_PCIE_OEM_ID	0x0009	/* PCAN-PCI Express OEM */
+#define PEAK_PCIEC34_DEVICE_ID	0x000A	/* PCAN-PCI Express 34 (one channel) */
 
 #define PEAK_PCI_CHAN_MAX	4
 
@@ -87,6 +89,7 @@ static const struct pci_device_id peak_pci_tbl[] = {
 	{PEAK_PCI_VENDOR_ID, PEAK_CPCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
 #ifdef CONFIG_CAN_PEAK_PCIEC
 	{PEAK_PCI_VENDOR_ID, PEAK_PCIEC_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
+	{PEAK_PCI_VENDOR_ID, PEAK_PCIEC34_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
 #endif
 	{0,}
 };
@@ -653,7 +656,8 @@ static int peak_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 		 * This must be done *before* register_sja1000dev() but
 		 * *after* devices linkage
 		 */
-		if (pdev->device == PEAK_PCIEC_DEVICE_ID) {
+		if (pdev->device == PEAK_PCIEC_DEVICE_ID ||
+		    pdev->device == PEAK_PCIEC34_DEVICE_ID) {
 			err = peak_pciec_probe(pdev, dev);
 			if (err) {
 				dev_err(&pdev->dev,




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

* Re: [PATCH can] peak_pci: add PCI ID definition pcie card variant
  2014-09-16  8:05 [PATCH can] peak_pci: add PCI ID definition pcie card variant Oliver Hartkopp
@ 2014-09-16 13:05 ` Stephane Grosjean
  2014-09-16 13:50   ` Oliver Hartkopp
  2014-09-16 14:01 ` Marc Kleine-Budde
  1 sibling, 1 reply; 4+ messages in thread
From: Stephane Grosjean @ 2014-09-16 13:05 UTC (permalink / raw)
  To: Oliver Hartkopp, Marc Kleine-Budde; +Cc: linux-can

Hi Oliver,

You've got my Acked-by, many thanks for having handled that !

Le 16/09/2014 10:05, Oliver Hartkopp a écrit :
> Add PCI ID definition for the single channel PCAN ExpressCard 34 adapter.
> Due to the subsystem id evaluation the correct number of channels (here 1)
> is created at initialization time. Tested including the LED functionality.
>
> Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
> CC: Stephane Grosjean <s.grosjean@peak-system.com>
Acked-by: Stephane Grosjean <s.grosjean@peak-system.com>
>
> ---
>
> Hi Marc,
>
> as this is 'just a PCI ID definition' this patch should go into Daves
> net-tree for 3.17-rc upstream. The USB guys do it the same as there is no
> risk of breaking other peoples work at that stage.
>
> Tnx,
> Oliver
>
>
>
> diff --git a/drivers/net/can/sja1000/peak_pci.c b/drivers/net/can/sja1000/peak_pci.c
> index 7a85590..e5fac36 100644
> --- a/drivers/net/can/sja1000/peak_pci.c
> +++ b/drivers/net/can/sja1000/peak_pci.c
> @@ -70,6 +70,8 @@ struct peak_pci_chan {
>   #define PEAK_PC_104P_DEVICE_ID	0x0006	/* PCAN-PC/104+ cards */
>   #define PEAK_PCI_104E_DEVICE_ID	0x0007	/* PCAN-PCI/104 Express cards */
>   #define PEAK_MPCIE_DEVICE_ID	0x0008	/* The miniPCIe slot cards */
> +#define PEAK_PCIE_OEM_ID	0x0009	/* PCAN-PCI Express OEM */
> +#define PEAK_PCIEC34_DEVICE_ID	0x000A	/* PCAN-PCI Express 34 (one channel) */
>   
>   #define PEAK_PCI_CHAN_MAX	4
>   
> @@ -87,6 +89,7 @@ static const struct pci_device_id peak_pci_tbl[] = {
>   	{PEAK_PCI_VENDOR_ID, PEAK_CPCI_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
>   #ifdef CONFIG_CAN_PEAK_PCIEC
>   	{PEAK_PCI_VENDOR_ID, PEAK_PCIEC_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
> +	{PEAK_PCI_VENDOR_ID, PEAK_PCIEC34_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
>   #endif
>   	{0,}
>   };
> @@ -653,7 +656,8 @@ static int peak_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
>   		 * This must be done *before* register_sja1000dev() but
>   		 * *after* devices linkage
>   		 */
> -		if (pdev->device == PEAK_PCIEC_DEVICE_ID) {
> +		if (pdev->device == PEAK_PCIEC_DEVICE_ID ||
> +		    pdev->device == PEAK_PCIEC34_DEVICE_ID) {
>   			err = peak_pciec_probe(pdev, dev);
>   			if (err) {
>   				dev_err(&pdev->dev,
>
>
>

--
PEAK-System Technik GmbH, Otto-Roehm-Strasse 69, D-64293 Darmstadt 
Geschaeftsleitung: A.Gach/U.Wilhelm,St.Nr.:007/241/13586 FA Darmstadt 
HRB-9183 Darmstadt, Ust.IdNr.:DE 202220078, WEE-Reg.-Nr.: DE39305391 
Tel.+49 (0)6151-817320 / Fax:+49 (0)6151-817329, info@peak-system.com
--

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

* Re: [PATCH can] peak_pci: add PCI ID definition pcie card variant
  2014-09-16 13:05 ` Stephane Grosjean
@ 2014-09-16 13:50   ` Oliver Hartkopp
  0 siblings, 0 replies; 4+ messages in thread
From: Oliver Hartkopp @ 2014-09-16 13:50 UTC (permalink / raw)
  To: Stephane Grosjean, Marc Kleine-Budde; +Cc: linux-can

Hi Stephane,

On 16.09.2014 15:05, Stephane Grosjean wrote:

> You've got my Acked-by, many thanks for having handled that !

That's the advantage when providing readable code :-)

The adapter works pretty good - even the PCI hotplug stuff and the LED.

Thanks & best regards,
Oliver

> 
> Le 16/09/2014 10:05, Oliver Hartkopp a écrit :
>> Add PCI ID definition for the single channel PCAN ExpressCard 34 adapter.
>> Due to the subsystem id evaluation the correct number of channels (here 1)
>> is created at initialization time. Tested including the LED functionality.
>>
>> Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
>> CC: Stephane Grosjean <s.grosjean@peak-system.com>
> Acked-by: Stephane Grosjean <s.grosjean@peak-system.com>
>>


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

* Re: [PATCH can] peak_pci: add PCI ID definition pcie card variant
  2014-09-16  8:05 [PATCH can] peak_pci: add PCI ID definition pcie card variant Oliver Hartkopp
  2014-09-16 13:05 ` Stephane Grosjean
@ 2014-09-16 14:01 ` Marc Kleine-Budde
  1 sibling, 0 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2014-09-16 14:01 UTC (permalink / raw)
  To: Oliver Hartkopp, Stephane Grosjean; +Cc: linux-can

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

On 09/16/2014 10:05 AM, Oliver Hartkopp wrote:
> Add PCI ID definition for the single channel PCAN ExpressCard 34 adapter.
> Due to the subsystem id evaluation the correct number of channels (here 1)
> is created at initialization time. Tested including the LED functionality.
> 
> Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
> CC: Stephane Grosjean <s.grosjean@peak-system.com>

Applied to can.

Thnx,
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: 181 bytes --]

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

end of thread, other threads:[~2014-09-16 14:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-16  8:05 [PATCH can] peak_pci: add PCI ID definition pcie card variant Oliver Hartkopp
2014-09-16 13:05 ` Stephane Grosjean
2014-09-16 13:50   ` Oliver Hartkopp
2014-09-16 14:01 ` Marc Kleine-Budde

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.