diff options
author | Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> | 2011-07-18 14:23:29 +0530 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2011-08-09 19:45:21 +0300 |
commit | 50745af7ebb38d3f8f2487f92db6c59c13dc0b89 (patch) | |
tree | 245e4e80b8eabaea29e0ba4292fbe4c92f62081d /drivers/net/wireless/ath/ath6kl/hif.h | |
parent | 5be8824f28d70579f725297b0ca6fd26945686a6 (diff) |
ath6kl: Move scatter information from ath6kl_device to htc_target
Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/hif.h')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/hif.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/hif.h b/drivers/net/wireless/ath/ath6kl/hif.h index bbacba466cb7..5ceff54775a1 100644 --- a/drivers/net/wireless/ath/ath6kl/hif.h +++ b/drivers/net/wireless/ath/ath6kl/hif.h @@ -186,11 +186,6 @@ struct hif_scatter_req { struct hif_scatter_item scat_list[1]; }; -struct hif_dev_scat_sup_info { - int max_scat_entries; - int max_xfer_szper_scatreq; -}; - struct ath6kl_hif_ops { int (*read_write_sync)(struct ath6kl *ar, u32 addr, u8 *buf, u32 len, u32 request); @@ -203,8 +198,7 @@ struct ath6kl_hif_ops { struct hif_scatter_req *(*scatter_req_get)(struct ath6kl *ar); void (*scatter_req_add)(struct ath6kl *ar, struct hif_scatter_req *s_req); - int (*enable_scatter)(struct ath6kl *ar, - struct hif_dev_scat_sup_info *info); + int (*enable_scatter)(struct ath6kl *ar); int (*scat_req_rw) (struct ath6kl *ar, struct hif_scatter_req *scat_req); void (*cleanup_scatter)(struct ath6kl *ar); |