digital_dep.c (d58ff35122847a83ba55394e2ae3a1527b6febf5) | digital_dep.c (634fef61076d644b989b86abc2f560d81a089a31) |
---|---|
1/* 2 * NFC Digital Protocol stack 3 * Copyright (c) 2013, Intel Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 * --- 640 unchanged lines hidden (view full) --- 649 rwt_int = ddev->dep_rwt * rtox; 650 if (rwt_int > digital_rwt_map[DIGITAL_NFC_DEP_IN_MAX_WT]) 651 rwt_int = digital_rwt_map[DIGITAL_NFC_DEP_IN_MAX_WT]; 652 653 skb = digital_skb_alloc(ddev, 1); 654 if (!skb) 655 return -ENOMEM; 656 | 1/* 2 * NFC Digital Protocol stack 3 * Copyright (c) 2013, Intel Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 * --- 640 unchanged lines hidden (view full) --- 649 rwt_int = ddev->dep_rwt * rtox; 650 if (rwt_int > digital_rwt_map[DIGITAL_NFC_DEP_IN_MAX_WT]) 651 rwt_int = digital_rwt_map[DIGITAL_NFC_DEP_IN_MAX_WT]; 652 653 skb = digital_skb_alloc(ddev, 1); 654 if (!skb) 655 return -ENOMEM; 656 |
657 *(u8 *)skb_put(skb, 1) = rtox; | 657 skb_put_u8(skb, rtox); |
658 659 skb_push(skb, sizeof(struct digital_dep_req_res)); 660 661 dep_req = (struct digital_dep_req_res *)skb->data; 662 663 dep_req->dir = DIGITAL_NFC_DEP_FRAME_DIR_OUT; 664 dep_req->cmd = DIGITAL_CMD_DEP_REQ; 665 dep_req->pfb = DIGITAL_NFC_DEP_PFB_SUPERVISOR_PDU | --- 978 unchanged lines hidden --- | 658 659 skb_push(skb, sizeof(struct digital_dep_req_res)); 660 661 dep_req = (struct digital_dep_req_res *)skb->data; 662 663 dep_req->dir = DIGITAL_NFC_DEP_FRAME_DIR_OUT; 664 dep_req->cmd = DIGITAL_CMD_DEP_REQ; 665 dep_req->pfb = DIGITAL_NFC_DEP_PFB_SUPERVISOR_PDU | --- 978 unchanged lines hidden --- |