old mode 100644new mode 100755.. | .. |
---|
100 | 100 | //break; |
---|
101 | 101 | } |
---|
102 | 102 | // set the cfm status |
---|
103 | | - skb = (struct sk_buff *)(uint64_t)host_id; |
---|
| 103 | + skb = (struct sk_buff *)(unsigned long)host_id; |
---|
104 | 104 | txhdr = (struct rwnx_txhdr *)skb->data; |
---|
105 | 105 | txhdr->hw_hdr.cfm.status = (union rwnx_hw_txstatus)data[0]; |
---|
106 | 106 | printk("sdio_host_tx_cfm_handler:used_idx=%d, 0x%p, status=%x\r\n", used_idx, env->pthis, txhdr->hw_hdr.cfm.status.value); |
---|
107 | 107 | //if (env->cb.send_data_cfm(env->pthis, host_id) != 0) |
---|
108 | | - if (rwnx_txdatacfm(env->pthis, (void *)host_id) != 0) { |
---|
| 108 | + if (rwnx_txdatacfm(env->pthis, (void *)(unsigned long)host_id) != 0) { |
---|
109 | 109 | // No more confirmations, so put back the used index at its initial value |
---|
110 | 110 | env->txdesc_used_idx[queue_idx] = used_idx; |
---|
111 | 111 | env->tx_host_id[queue_idx][used_idx % SDIO_TXDESC_CNT] = host_id; |
---|