}
 
        /* Should possibly check if this fails for the largest buffer we
-          have queued and recycle that ? */
+        * have queued and recycle that ?
+        */
        if (atomic_read(&port->buf.mem_used) > port->buf.mem_limit)
                return NULL;
        p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
                copied += space;
                chars += space;
                /* There is a small chance that we need to split the data over
-                  several buffers. If this is the case we must loop */
+                * several buffers. If this is the case we must loop.
+                */
        } while (unlikely(size > copied));
        return copied;
 }
                chars += space;
                flags += space;
                /* There is a small chance that we need to split the data over
-                  several buffers. If this is the case we must loop */
+                * several buffers. If this is the case we must loop.
+                */
        } while (unlikely(size > copied));
        return copied;
 }