};
struct channel_attr {
- u8 u8SetChan;
+ u8 set_ch;
};
struct beacon_attr {
strWID.id = (u16)WID_CURRENT_CHANNEL;
strWID.type = WID_CHAR;
- strWID.val = (char *)&(pstrHostIFSetChan->u8SetChan);
+ strWID.val = (char *)&(pstrHostIFSetChan->set_ch);
strWID.size = sizeof(char);
PRINT_D(HOSTINF_DBG, "Setting channel\n");
memset(&msg, 0, sizeof(struct host_if_msg));
msg.id = HOST_IF_MSG_SET_CHANNEL;
- msg.body.channel_info.u8SetChan = channel;
+ msg.body.channel_info.set_ch = channel;
msg.drv = hif_drv;
result = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));