mirror of https://gitee.com/openkylin/linux.git
staging: vt6655: Add space around '*'
Add space around operator '*'. Problem found using checkpatch.pl CHECK: spaces preferred around that '*' (ctx:VxV) Signed-off-by: Burcin Akalin <brcnakalin@gmail.com> Reviewed-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8c182ae207
commit
0cddeac382
|
@ -238,7 +238,7 @@ bool CARDbSetPhyParameter(struct vnt_private *priv, u8 bb_type)
|
|||
BBbWriteEmbedded(priv, 0x88, 0x03);
|
||||
bySlot = C_SLOT_SHORT;
|
||||
bySIFS = C_SIFS_A;
|
||||
byDIFS = C_SIFS_A + 2*C_SLOT_SHORT;
|
||||
byDIFS = C_SIFS_A + 2 * C_SLOT_SHORT;
|
||||
byCWMaxMin = 0xA4;
|
||||
} else if (bb_type == BB_TYPE_11B) {
|
||||
MACvSetBBType(priv->PortOffset, BB_TYPE_11B);
|
||||
|
|
Loading…
Reference in New Issue