VPP-254 Coding standard cleanup - vnet/vnet/hdlc
[vpp.git] / src / vnet / hdlc / pg.c
index b8e6702..408e187 100644 (file)
@@ -41,7 +41,8 @@
 #include <vnet/pg/pg.h>
 #include <vnet/hdlc/hdlc.h>
 
-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:
+ */