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

staging: dgnc: dgnc_driver.h Align columns

Make modifications to align columns

Signed-off-by: Walt Feasel <waltfeasel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Walt Feasel and committed by
Greg Kroah-Hartman
57fa74f3 7cc7ded6

+10 -10
+10 -10
drivers/staging/dgnc/dgnc_driver.h
··· 251 251 #define CH_TX_FIFO_EMPTY 0x0400 /* TX Fifo is completely empty */ 252 252 #define CH_TX_FIFO_LWM 0x0800 /* TX Fifo is below Low Water */ 253 253 #define CH_BREAK_SENDING 0x1000 /* Break is being sent */ 254 - #define CH_LOOPBACK 0x2000 /* Channel is in lookback mode */ 254 + #define CH_LOOPBACK 0x2000 /* Channel is in lookback mode */ 255 255 #define CH_BAUD0 0x08000 /* Used for checking B0 transitions */ 256 256 #define CH_FORCED_STOP 0x20000 /* Output is forcibly stopped */ 257 257 #define CH_FORCED_STOPI 0x40000 /* Input is forcibly stopped */ ··· 267 267 /* Channel information structure. */ 268 268 struct channel_t { 269 269 int magic; /* Channel Magic Number */ 270 - struct dgnc_board *ch_bd; /* Board structure pointer */ 270 + struct dgnc_board *ch_bd; /* Board structure pointer */ 271 271 struct digi_t ch_digi; /* Transparent Print structure */ 272 272 struct un_t ch_tun; /* Terminal unit info */ 273 273 struct un_t ch_pun; /* Printer unit info */ ··· 297 297 298 298 uint ch_wopen; /* Waiting for open process cnt */ 299 299 300 - unsigned char ch_mostat; /* FEP output modem status */ 301 - unsigned char ch_mistat; /* FEP input modem status */ 300 + unsigned char ch_mostat; /* FEP output modem status */ 301 + unsigned char ch_mistat; /* FEP input modem status */ 302 302 303 303 struct neo_uart_struct __iomem *ch_neo_uart; /* Pointer to the 304 304 * "mapped" UART struct ··· 324 324 ulong ch_rxcount; /* total of data received so far */ 325 325 ulong ch_txcount; /* total of data transmitted so far */ 326 326 327 - unsigned char ch_r_tlevel; /* Receive Trigger level */ 328 - unsigned char ch_t_tlevel; /* Transmit Trigger level */ 327 + unsigned char ch_r_tlevel; /* Receive Trigger level */ 328 + unsigned char ch_t_tlevel; /* Transmit Trigger level */ 329 329 330 - unsigned char ch_r_watermark; /* Receive Watermark */ 330 + unsigned char ch_r_watermark; /* Receive Watermark */ 331 331 332 332 ulong ch_stop_sending_break; /* Time we should STOP 333 333 * sending a break ··· 358 358 extern spinlock_t dgnc_global_lock; /* Driver global spinlock */ 359 359 extern spinlock_t dgnc_poll_lock; /* Poll scheduling lock */ 360 360 extern uint dgnc_num_boards; /* Total number of boards */ 361 - extern struct dgnc_board *dgnc_board[MAXBOARDS]; /* Array of board 362 - * structs 363 - */ 361 + extern struct dgnc_board *dgnc_board[MAXBOARDS];/* Array of board 362 + * structs 363 + */ 364 364 365 365 #endif