Index: uspace/drv/hid/ps2mouse/ps2mouse.c
===================================================================
--- uspace/drv/hid/ps2mouse/ps2mouse.c	(revision 3bacee1839e6f355100ab4ea86bb211e9ecf19ed)
+++ uspace/drv/hid/ps2mouse/ps2mouse.c	(revision a05ec6671002c451fceb01aa0ab3f71f004efb6d)
@@ -324,5 +324,6 @@
 
 		/* Buttons */
-		/* NOTE: Parsing 4th and 5th button works even if this extension
+		/*
+		 * NOTE: Parsing 4th and 5th button works even if this extension
 		 * is not supported and whole 4th byte should be interpreted
 		 * as Z-axis movement. the upper 4 bits are just a sign
@@ -330,5 +331,6 @@
 		 * (i.e no change since that is the default) and - sign fails
 		 * the "imb" condition. Thus 4th and 5th buttons are never
-		 * down on wheel only extension. */
+		 * down on wheel only extension.
+		 */
 		const bool imb = (packet[3] & INTELLIMOUSE_ALWAYS_ZERO) == 0;
 		const bool status[] = {
@@ -411,7 +413,9 @@
 
 	switch (method) {
-	/* This might be ugly but async_callback_receive_start makes no
-	 * difference for incorrect call and malloc failure. */
 	case IPC_M_CONNECT_TO_ME:
+		/*
+		 * This might be ugly but async_callback_receive_start makes no
+		 * difference for incorrect call and malloc failure.
+		 */
 		sess = async_callback_receive_start(EXCHANGE_SERIALIZE, icall);
 		/* Probably ENOMEM error, try again. */
