netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] CAN: add controller hardware name for Softing cards
@ 2011-02-21  9:04 Kurt Van Dijck
  2011-02-21  9:13 ` Marc Kleine-Budde
  0 siblings, 1 reply; 4+ messages in thread
From: Kurt Van Dijck @ 2011-02-21  9:04 UTC (permalink / raw)
  To: netdev

I just found that the controller hardware name is not set for the Softing
driver. After this patch, "$ ip -d link show" looks nicer.

Signed-off-by: Kurt Van Dijck <kurt.van.dijck@eia.be>
---
diff --git a/drivers/net/can/softing/softing_main.c b/drivers/net/can/softing/softing_main.c
index 5157e15..aeea9f9 100644
--- a/drivers/net/can/softing/softing_main.c
+++ b/drivers/net/can/softing/softing_main.c
@@ -633,6 +633,7 @@ static const struct net_device_ops softing_netdev_ops = {
 };
 
 static const struct can_bittiming_const softing_btr_const = {
+	.name = "softing",
 	.tseg1_min = 1,
 	.tseg1_max = 16,
 	.tseg2_min = 1,

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

* Re: [PATCH] CAN: add controller hardware name for Softing cards
  2011-02-21  9:04 [PATCH] CAN: add controller hardware name for Softing cards Kurt Van Dijck
@ 2011-02-21  9:13 ` Marc Kleine-Budde
  2011-02-21 17:26   ` OT: " Oliver Hartkopp
  2011-02-28 20:09   ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Marc Kleine-Budde @ 2011-02-21  9:13 UTC (permalink / raw)
  To: Kurt Van Dijck; +Cc: netdev

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

On 02/21/2011 10:04 AM, Kurt Van Dijck wrote:
> I just found that the controller hardware name is not set for the Softing
> driver. After this patch, "$ ip -d link show" looks nicer.
> 
> Signed-off-by: Kurt Van Dijck <kurt.van.dijck@eia.be>
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>

Marc

> ---
> diff --git a/drivers/net/can/softing/softing_main.c b/drivers/net/can/softing/softing_main.c
> index 5157e15..aeea9f9 100644
> --- a/drivers/net/can/softing/softing_main.c
> +++ b/drivers/net/can/softing/softing_main.c
> @@ -633,6 +633,7 @@ static const struct net_device_ops softing_netdev_ops = {
>  };
>  
>  static const struct can_bittiming_const softing_btr_const = {
> +	.name = "softing",
>  	.tseg1_min = 1,
>  	.tseg1_max = 16,
>  	.tseg2_min = 1,
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
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 --]

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

* OT: Re: [PATCH] CAN: add controller hardware name for Softing cards
  2011-02-21  9:13 ` Marc Kleine-Budde
@ 2011-02-21 17:26   ` Oliver Hartkopp
  2011-02-28 20:09   ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: Oliver Hartkopp @ 2011-02-21 17:26 UTC (permalink / raw)
  To: Marc Kleine-Budde, Wolfgang Grandegger; +Cc: Kurt Van Dijck, netdev

On 21.02.2011 10:13, Marc Kleine-Budde wrote:
> On 02/21/2011 10:04 AM, Kurt Van Dijck wrote:
>> I just found that the controller hardware name is not set for the Softing
>> driver. After this patch, "$ ip -d link show" looks nicer.
>>
>> Signed-off-by: Kurt Van Dijck <kurt.van.dijck@eia.be>
> Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
> 

Hello Marc,

i really appreciate your work regarding the CAN driver maintenance together
with Wolfgang!

Would it probably make sense to add your name to the drivers/net/can section
in the MAINTAINERS file so that Dave and the other listeners on netdev-ML can
appraise your Acked-by more easily?

Regards,
Oliver

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

* Re: [PATCH] CAN: add controller hardware name for Softing cards
  2011-02-21  9:13 ` Marc Kleine-Budde
  2011-02-21 17:26   ` OT: " Oliver Hartkopp
@ 2011-02-28 20:09   ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2011-02-28 20:09 UTC (permalink / raw)
  To: mkl; +Cc: kurt.van.dijck, netdev

From: Marc Kleine-Budde <mkl@pengutronix.de>
Date: Mon, 21 Feb 2011 10:13:37 +0100

> On 02/21/2011 10:04 AM, Kurt Van Dijck wrote:
>> I just found that the controller hardware name is not set for the Softing
>> driver. After this patch, "$ ip -d link show" looks nicer.
>> 
>> Signed-off-by: Kurt Van Dijck <kurt.van.dijck@eia.be>
> Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>

Applied, thanks.

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

end of thread, other threads:[~2011-02-28 20:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-21  9:04 [PATCH] CAN: add controller hardware name for Softing cards Kurt Van Dijck
2011-02-21  9:13 ` Marc Kleine-Budde
2011-02-21 17:26   ` OT: " Oliver Hartkopp
2011-02-28 20:09   ` 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).