On Wed, 2013-03-06 at 23:48 +0200, Silviu-Mihai Popescu wrote:
> This lines up function arguments on second and subsequent lines at the
> first column after the openning parenthesis of the first line.
[]
> diff --git a/net/caif/caif_dev.c b/net/caif/caif_dev.c
[]
> @@ -301,10 +301,10 @@ static void dev_flowctrl(struct net_device *dev, int on)
>  }
>  
>  void caif_enroll_dev(struct net_device *dev, struct caif_dev_common *caifdev,
> -                     struct cflayer *link_support, int head_room,
> -                     struct cflayer **layer, int (**rcv_func)(
> -                             struct sk_buff *, struct net_device *,
> -                             struct packet_type *, struct net_device *))
> +                  struct cflayer *link_support, int head_room,
> +                  struct cflayer **layer, int (**rcv_func)(
> +                  struct sk_buff *, struct net_device *,
> +                  struct packet_type *, struct net_device *))

This makes it seem that caif_enroll_dev takes more args.

I think this style is better (aligned to appropriate open paren)

void caif_enroll_dev(struct net_device *dev, struct caif_dev_common *caifdev,
                     struct cflayer *link_support, int head_room,
                     struct cflayer **layer,
                     int (**rcv_func)(struct sk_buff *, struct net_device *,
                                      struct packet_type *, struct net_device 
*))

[]

> @@ -301,8 +301,8 @@ static int caif_connect_req_to_link_param(struct cfcnfg 
> *cnfg,
>  
>  int caif_connect_client(struct net *net, struct caif_connect_request 
> *conn_req,
>                       struct cflayer *adap_layer, int *ifindex,
> -                             int *proto_head,
> -                             int *proto_tail)
> +                     int *proto_head,
> +                     int *proto_tail)

You could fill to 80 here.


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to