Input: xilinx_ps2 - fix multiline comment style

Fix multiline comments style not to be reported by checkpatch.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by Michal Simek and committed by Dmitry Torokhov da1a42cd 117b2dc5

+8 -4
+8 -4
drivers/input/serio/xilinx_ps2.c
··· 45 45 #define XPS2_STATUS_RX_FULL 0x00000001 /* Receive Full */ 46 46 #define XPS2_STATUS_TX_FULL 0x00000002 /* Transmit Full */ 47 47 48 - /* Bit definitions for ISR/IER registers. Both the registers have the same bit 49 - * definitions and are only defined once. */ 48 + /* 49 + * Bit definitions for ISR/IER registers. Both the registers have the same bit 50 + * definitions and are only defined once. 51 + */ 50 52 #define XPS2_IPIXR_WDT_TOUT 0x00000001 /* Watchdog Timeout Interrupt */ 51 53 #define XPS2_IPIXR_TX_NOACK 0x00000002 /* Transmit No ACK Interrupt */ 52 54 #define XPS2_IPIXR_TX_ACK 0x00000004 /* Transmit ACK (Data) Interrupt */ ··· 294 292 /* Disable all the interrupts, just in case */ 295 293 out_be32(drvdata->base_address + XPS2_IPIER_OFFSET, 0); 296 294 297 - /* Reset the PS2 device and abort any current transaction, to make sure 298 - * we have the PS2 in a good state */ 295 + /* 296 + * Reset the PS2 device and abort any current transaction, 297 + * to make sure we have the PS2 in a good state. 298 + */ 299 299 out_be32(drvdata->base_address + XPS2_SRST_OFFSET, XPS2_SRST_RESET); 300 300 301 301 dev_info(dev, "Xilinx PS2 at 0x%08llX mapped to 0x%p, irq=%d\n",