mirror of https://gitee.com/openkylin/linux.git
staging: qlge: qlge.h: add spaces around operators
Add spaces around operators cleanup reported by checkpatch. Signed-off-by: Payal Kshirsagar <payalskshirsagar1234@gmail.com> Link: https://lore.kernel.org/r/20200309162728.4342-3-payalskshirsagar1234@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e148bdb2ed
commit
98624b53ee
|
@ -59,7 +59,7 @@
|
|||
#define MAX_CQ 128
|
||||
#define DFLT_COALESCE_WAIT 100 /* 100 usec wait for coalescing */
|
||||
#define MAX_INTER_FRAME_WAIT 10 /* 10 usec max interframe-wait for coalescing */
|
||||
#define DFLT_INTER_FRAME_WAIT (MAX_INTER_FRAME_WAIT/2)
|
||||
#define DFLT_INTER_FRAME_WAIT (MAX_INTER_FRAME_WAIT / 2)
|
||||
#define UDELAY_COUNT 3
|
||||
#define UDELAY_DELAY 100
|
||||
|
||||
|
@ -1367,7 +1367,7 @@ struct tx_ring_desc {
|
|||
struct tx_ring_desc *next;
|
||||
};
|
||||
|
||||
#define QL_TXQ_IDX(qdev, skb) (smp_processor_id()%(qdev->tx_ring_count))
|
||||
#define QL_TXQ_IDX(qdev, skb) (smp_processor_id() % (qdev->tx_ring_count))
|
||||
|
||||
struct tx_ring {
|
||||
/*
|
||||
|
@ -1792,7 +1792,7 @@ struct ql_reg_dump {
|
|||
|
||||
/* segment 34 */
|
||||
struct mpi_coredump_segment_header ets_seg_hdr;
|
||||
u32 ets[8+2];
|
||||
u32 ets[8 + 2];
|
||||
};
|
||||
|
||||
struct ql_mpi_coredump {
|
||||
|
|
Loading…
Reference in New Issue