mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 20:58:14 -04:00
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:
committed by
Greg Kroah-Hartman
parent
d5f654cabb
commit
bcb410bbc9
@@ -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:
|
||||
|
||||
@@ -247,7 +247,7 @@ struct remain_ch {
|
||||
struct reg_frame {
|
||||
bool reg;
|
||||
u16 frame_type;
|
||||
u8 u8Regid;
|
||||
u8 reg_id;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user