Home
last modified time | relevance | path

Searched refs:pu8keybuf (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/drivers/staging/wilc1000/
Dhost_interface.c1703 u8 *pu8keybuf; in Handle_Key() local
1729 pu8keybuf = kmemdup(pstrHostIFkeyAttr->attr.wep.key, in Handle_Key()
1733 if (pu8keybuf == NULL) { in Handle_Key()
1743 strWIDList[3].val = (s8 *)pu8keybuf; in Handle_Key()
1747 kfree(pu8keybuf); in Handle_Key()
1752 pu8keybuf = kmalloc(pstrHostIFkeyAttr->attr.wep.key_len + 2, GFP_KERNEL); in Handle_Key()
1753 if (!pu8keybuf) { in Handle_Key()
1757 pu8keybuf[0] = pstrHostIFkeyAttr->attr.wep.index; in Handle_Key()
1758 memcpy(pu8keybuf + 1, &pstrHostIFkeyAttr->attr.wep.key_len, 1); in Handle_Key()
1759 memcpy(pu8keybuf + 2, pstrHostIFkeyAttr->attr.wep.key, in Handle_Key()
[all …]