staging: wilc1000: rename u8Regid of struct reg_frame

This patch renames u8Regid of struct reg_frame to reg_id
to avoid CamelCase naming convention.

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Leo Kim
2015-10-29 11:58:40 +09:00
committed by Greg Kroah-Hartman
parent d5f654cabb
commit bcb410bbc9
2 changed files with 4 additions and 4 deletions

View File

@@ -2565,7 +2565,7 @@ static int Handle_RegisterFrame(struct host_if_drv *hif_drv,
pu8CurrByte = wid.val;
*pu8CurrByte++ = pstrHostIfRegisterFrame->reg;
*pu8CurrByte++ = pstrHostIfRegisterFrame->u8Regid;
*pu8CurrByte++ = pstrHostIfRegisterFrame->reg_id;
memcpy(pu8CurrByte, &pstrHostIfRegisterFrame->frame_type, sizeof(u16));
wid.size = sizeof(u16) + 2;
@@ -4422,12 +4422,12 @@ s32 host_int_frame_register(struct host_if_drv *hif_drv, u16 u16FrameType, bool
switch (u16FrameType) {
case ACTION:
PRINT_D(HOSTINF_DBG, "ACTION\n");
msg.body.reg_frame.u8Regid = ACTION_FRM_IDX;
msg.body.reg_frame.reg_id = ACTION_FRM_IDX;
break;
case PROBE_REQ:
PRINT_D(HOSTINF_DBG, "PROBE REQ\n");
msg.body.reg_frame.u8Regid = PROBE_REQ_IDX;
msg.body.reg_frame.reg_id = PROBE_REQ_IDX;
break;
default:

View File

@@ -247,7 +247,7 @@ struct remain_ch {
struct reg_frame {
bool reg;
u16 frame_type;
u8 u8Regid;
u8 reg_id;
};