struct channel_header chan_hdr;
        guid_t guid;
        /*
-        * channel creator knows if more than one
-        * thread will be inserting or removing
+        * channel creator knows if more than one thread will be inserting or
+        * removing
         */
        bool needs_lock;
        /* protect head writes in chan_hdr */
 }
 
 /*
- * Write the contents of a specific field within a SIGNAL_QUEUE_HEADER back
- * into host memory
+ * Write the contents of a specific field within a SIGNAL_QUEUE_HEADER back into
+ * host memory
  */
 #define SIG_WRITE_FIELD(channel, queue, sig_hdr, FIELD) \
        visorchannel_write(channel, \
        sig_hdr.num_received++;
 
        /*
-        * For each data field in SIGNAL_QUEUE_HEADER that was modified,
-        * update host memory. Required for channel sync.
+        * For each data field in SIGNAL_QUEUE_HEADER that was modified, update
+        * host memory. Required for channel sync.
         */
        mb();
 
 }
 
 /**
- * visorchannel_signalempty() - checks if the designated channel/queue
- *                              contains any messages
+ * visorchannel_signalempty() - checks if the designated channel/queue contains
+ *                             any messages
  * @channel: the channel to query
  * @queue:   the queue in the channel to query
  *
        sig_hdr.num_sent++;
 
        /*
-        * For each data field in SIGNAL_QUEUE_HEADER that was modified,
-        * update host memory. Required for channel sync.
+        * For each data field in SIGNAL_QUEUE_HEADER that was modified, update
+        * host memory. Required for channel sync.
         */
        mb();
 
 }
 
 /*
- * visorchannel_create_guts() - creates the struct visorchannel abstraction
- *                              for a data area in memory, but does NOT modify
- *                              this data area
+ * visorchannel_create_guts() - creates the struct visorchannel abstraction for
+ *                             a data area in memory, but does NOT modify this
+ *                             data area
  * @physaddr:      physical address of start of channel
  * @gfp:           gfp_t to use when allocating memory for the data struct
  * @guid:          GUID that identifies channel type;
        spin_lock_init(&channel->remove_lock);
 
        /*
-        * Video driver constains the efi framebuffer so it will get a
-        * conflict resource when requesting its full mem region. Since
-        * we are only using the efi framebuffer for video we can ignore
-        * this. Remember that we haven't requested it so we don't try to
-        * release later on.
+        * Video driver constains the efi framebuffer so it will get a conflict
+        * resource when requesting its full mem region. Since we are only
+        * using the efi framebuffer for video we can ignore this. Remember that
+        * we haven't requested it so we don't try to release later on.
         */
        channel->requested = request_mem_region(physaddr, size, VISOR_DRV_NAME);
        if (!channel->requested && !guid_equal(guid, &visor_video_guid))