Rename the enum label CmdID_WritePortUchar to CMD_ID_WRITE_PORT_UCHAR, to
clear the checkpatch issue with CamelCase. The change is a coding style change
only and should not impact code execution.
Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
write_nic_word(dev, CurrentCmd->Para1,
(u16)CurrentCmd->Para2);
break;
- case CmdID_WritePortUchar:
+ case CMD_ID_WRITE_PORT_UCHAR:
write_nic_byte(dev, CurrentCmd->Para1,
(u8)CurrentCmd->Para2);
break;
CMD_ID_SET_TX_PWR_LEVEL,
CMD_ID_WRITE_PORT_ULONG,
CMD_ID_WRITE_PORT_USHORT,
- CmdID_WritePortUchar,
+ CMD_ID_WRITE_PORT_UCHAR,
CmdID_RF_WriteReg,
};