diff options
Diffstat (limited to 'include/net/nfc')
| -rw-r--r-- | include/net/nfc/digital.h | 4 | ||||
| -rw-r--r-- | include/net/nfc/llc.h | 4 | 
2 files changed, 2 insertions, 6 deletions
| diff --git a/include/net/nfc/digital.h b/include/net/nfc/digital.h index 0ae101eef0f4..74fa7eb94e72 100644 --- a/include/net/nfc/digital.h +++ b/include/net/nfc/digital.h @@ -220,12 +220,13 @@ struct nfc_digital_dev {  	struct list_head cmd_queue;  	struct mutex cmd_lock; -	struct work_struct poll_work; +	struct delayed_work poll_work;  	u8 curr_protocol;  	u8 curr_rf_tech;  	u8 curr_nfc_dep_pni;  	u8 did; +	u16 dep_rwt;  	u8 local_payload_max;  	u8 remote_payload_max; @@ -237,7 +238,6 @@ struct nfc_digital_dev {  	int nack_count;  	struct sk_buff *saved_skb; -	unsigned int saved_skb_len;  	u16 target_fsc; diff --git a/include/net/nfc/llc.h b/include/net/nfc/llc.h index c25fbdee0d61..7ecb45757897 100644 --- a/include/net/nfc/llc.h +++ b/include/net/nfc/llc.h @@ -37,10 +37,6 @@ struct nfc_llc *nfc_llc_allocate(const char *name, struct nfc_hci_dev *hdev,  				 int tx_tailroom, llc_failure_t llc_failure);  void nfc_llc_free(struct nfc_llc *llc); -void nfc_llc_get_rx_head_tail_room(struct nfc_llc *llc, int *rx_headroom, -				   int *rx_tailroom); - -  int nfc_llc_start(struct nfc_llc *llc);  int nfc_llc_stop(struct nfc_llc *llc);  void nfc_llc_rcv_from_drv(struct nfc_llc *llc, struct sk_buff *skb); |