Commit 3137139a authored by edcarter's avatar edcarter Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: s626.c: fixed trailing */ style issue



Fixed coding style issue where trailing */ in block comments
were not on separate lines.

Signed-off-by: default avatarElias Carter <edcarter@ualberta.ca>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b52fb140
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -580,11 +580,14 @@ static int s626_set_dac(struct comedi_device *dev,
	 * running after the packet has been sent to the target DAC.
	 */
	val = 0x0F000000;	/* Continue clock after target DAC data
				 * (write to non-existent trimdac). */
				 * (write to non-existent trimdac).
				 */
	val |= 0x00004000;	/* Address the two main dual-DAC devices
				 * (TSL's chip select enables target device). */
				 * (TSL's chip select enables target device).
				 */
	val |= ((u32)(chan & 1) << 15);	/* Address the DAC channel
						 * within the device. */
					 * within the device.
					 */
	val |= (u32)dacdata;	/* Include DAC setpoint data. */
	return s626_send_dac(dev, val);
}