Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: comedi: Fixed more long line lengths in comedi.h

This patches fixes some long line lengths in comedi.h from checkpatch.pl

Signed-off-by: Mark Rankilor <reodge@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Mark Rankilor and committed by
Greg Kroah-Hartman
7d8e737d b464f791

+10 -5
+10 -5
drivers/staging/comedi/comedi.h
··· 267 267 * streaming input/output */ 268 268 INSN_CONFIG_GET_HARDWARE_BUFFER_SIZE = 2006, 269 269 INSN_CONFIG_SET_COUNTER_MODE = 4097, 270 - INSN_CONFIG_8254_SET_MODE = INSN_CONFIG_SET_COUNTER_MODE, /* deprecated */ 270 + /* INSN_CONFIG_8254_SET_MODE is deprecated */ 271 + INSN_CONFIG_8254_SET_MODE = INSN_CONFIG_SET_COUNTER_MODE, 271 272 INSN_CONFIG_8254_READ_STATUS = 4098, 272 273 INSN_CONFIG_SET_ROUTING = 4099, 273 274 INSN_CONFIG_GET_ROUTING = 4109, ··· 599 598 NI_GPCT_LOGIC_LOW_CLOCK_SRC_BITS = 0x3, 600 599 NI_GPCT_NEXT_GATE_CLOCK_SRC_BITS = 0x4, 601 600 NI_GPCT_NEXT_TC_CLOCK_SRC_BITS = 0x5, 602 - NI_GPCT_SOURCE_PIN_i_CLOCK_SRC_BITS = 0x6, /* NI 660x-specific */ 601 + /* NI 660x-specific */ 602 + NI_GPCT_SOURCE_PIN_i_CLOCK_SRC_BITS = 0x6, 603 603 NI_GPCT_PXI10_CLOCK_SRC_BITS = 0x7, 604 604 NI_GPCT_PXI_STAR_TRIGGER_CLOCK_SRC_BITS = 0x8, 605 605 NI_GPCT_ANALOG_TRIGGER_OUT_CLOCK_SRC_BITS = 0x9, 606 606 NI_GPCT_PRESCALE_MODE_CLOCK_SRC_MASK = 0x30000000, 607 607 NI_GPCT_NO_PRESCALE_CLOCK_SRC_BITS = 0x0, 608 - NI_GPCT_PRESCALE_X2_CLOCK_SRC_BITS = 0x10000000, /* divide source by 2 */ 609 - NI_GPCT_PRESCALE_X8_CLOCK_SRC_BITS = 0x20000000, /* divide source by 8 */ 608 + /* divide source by 2 */ 609 + NI_GPCT_PRESCALE_X2_CLOCK_SRC_BITS = 0x10000000, 610 + /* divide source by 8 */ 611 + NI_GPCT_PRESCALE_X8_CLOCK_SRC_BITS = 0x20000000, 610 612 NI_GPCT_INVERT_CLOCK_SRC_BIT = 0x80000000 611 613 }; 612 614 static inline unsigned NI_GPCT_SOURCE_PIN_CLOCK_SRC_BITS(unsigned n) ··· 841 837 { 842 838 return NI_USUAL_PFI_SELECT(pfi_channel); 843 839 } 844 - static inline unsigned NI_CDIO_SCAN_BEGIN_SRC_RTSI(unsigned rtsi_channel) 840 + static inline unsigned 841 + NI_CDIO_SCAN_BEGIN_SRC_RTSI(unsigned rtsi_channel) 845 842 { 846 843 return NI_USUAL_RTSI_SELECT(rtsi_channel); 847 844 }