CAIF: fix indentation for function arguments
This lines up function arguments on second and subsequent lines at the first column after the openning parenthesis of the first line. Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b2fb4f54ec
commit
3bffc475f9
|
@ -302,9 +302,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 **layer,
|
||||
int (**rcv_func)(struct sk_buff *, struct net_device *,
|
||||
struct packet_type *,
|
||||
struct net_device *))
|
||||
{
|
||||
struct caif_device_entry *caifd;
|
||||
enum cfcnfg_phy_preference pref;
|
||||
|
|
|
@ -301,8 +301,7 @@ 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)
|
||||
{
|
||||
struct cflayer *frml;
|
||||
struct cfcnfg_phyinfo *phy;
|
||||
|
|
|
@ -160,8 +160,7 @@ static void cfsrvl_release(struct cflayer *layer)
|
|||
void cfsrvl_init(struct cfsrvl *service,
|
||||
u8 channel_id,
|
||||
struct dev_info *dev_info,
|
||||
bool supports_flowctrl
|
||||
)
|
||||
bool supports_flowctrl)
|
||||
{
|
||||
caif_assert(offsetof(struct cfsrvl, layer) == 0);
|
||||
service->open = false;
|
||||
|
|
Loading…
Reference in New Issue