From cc42db82f8d7e8e3e6719b1ae98bf3d48fff4b02 Mon Sep 17 00:00:00 2001 From: Swarup Nayak Date: Wed, 22 Nov 2017 16:41:57 +0530 Subject: VPP-254 Coding standard cleanup - vnet/vnet/hdlc Change-Id: I125b1ca20a5b30d199d4a79ad0034533818a5e9c Signed-off-by: Swarup Nayak --- src/vnet/hdlc/pg.c | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) (limited to 'src/vnet/hdlc/pg.c') diff --git a/src/vnet/hdlc/pg.c b/src/vnet/hdlc/pg.c index b8e67022b08..408e1876a6a 100644 --- a/src/vnet/hdlc/pg.c +++ b/src/vnet/hdlc/pg.c @@ -41,7 +41,8 @@ #include #include -typedef struct { +typedef struct +{ pg_edit_t address; pg_edit_t control; pg_edit_t protocol; @@ -58,10 +59,10 @@ pg_hdlc_header_init (pg_hdlc_header_t * e) uword unformat_pg_hdlc_header (unformat_input_t * input, va_list * args) { - pg_stream_t * s = va_arg (*args, pg_stream_t *); - pg_hdlc_header_t * h; + pg_stream_t *s = va_arg (*args, pg_stream_t *); + pg_hdlc_header_t *h; u32 group_index, error; - + h = pg_create_edit_group (s, sizeof (h[0]), sizeof (hdlc_header_t), &group_index); pg_hdlc_header_init (h); @@ -70,15 +71,15 @@ unformat_pg_hdlc_header (unformat_input_t * input, va_list * args) pg_edit_set_fixed (&h->control, 0x00); error = 1; - if (! unformat (input, "%U", - unformat_pg_edit, - unformat_hdlc_protocol_net_byte_order, &h->protocol)) + if (!unformat (input, "%U", + unformat_pg_edit, + unformat_hdlc_protocol_net_byte_order, &h->protocol)) goto done; { - hdlc_main_t * pm = &hdlc_main; - hdlc_protocol_info_t * pi = 0; - pg_node_t * pg_node = 0; + hdlc_main_t *pm = &hdlc_main; + hdlc_protocol_info_t *pi = 0; + pg_node_t *pg_node = 0; if (h->protocol.type == PG_EDIT_FIXED) { @@ -92,14 +93,22 @@ unformat_pg_hdlc_header (unformat_input_t * input, va_list * args) && unformat_user (input, pg_node->unformat_edit, s)) ; - else if (! unformat_user (input, unformat_pg_payload, s)) + else if (!unformat_user (input, unformat_pg_payload, s)) goto done; } error = 0; - done: +done: if (error) pg_free_edit_group (s); return error == 0; } + +/* + * fd.io coding-style-patch-verification: ON + * + * Local Variables: + * eval: (c-set-style "gnu") + * End: + */ -- cgit 1.2.3-korg