|
@@ -32,17 +32,14 @@
|
|
|
|
|
|
unsigned int ath10k_debug_mask;
|
|
|
static bool uart_print;
|
|
|
-static unsigned int ath10k_p2p;
|
|
|
static bool skip_otp;
|
|
|
|
|
|
module_param_named(debug_mask, ath10k_debug_mask, uint, 0644);
|
|
|
module_param(uart_print, bool, 0644);
|
|
|
-module_param_named(p2p, ath10k_p2p, uint, 0644);
|
|
|
module_param(skip_otp, bool, 0644);
|
|
|
|
|
|
MODULE_PARM_DESC(debug_mask, "Debugging mask");
|
|
|
MODULE_PARM_DESC(uart_print, "Uart target debugging");
|
|
|
-MODULE_PARM_DESC(p2p, "Enable ath10k P2P support");
|
|
|
MODULE_PARM_DESC(skip_otp, "Skip otp failure for calibration in testmode");
|
|
|
|
|
|
static const struct ath10k_hw_params ath10k_hw_params_list[] = {
|
|
@@ -1290,10 +1287,7 @@ struct ath10k *ath10k_core_create(size_t priv_size, struct device *dev,
|
|
|
|
|
|
ar->ath_common.priv = ar;
|
|
|
ar->ath_common.hw = ar->hw;
|
|
|
-
|
|
|
- ar->p2p = !!ath10k_p2p;
|
|
|
ar->dev = dev;
|
|
|
-
|
|
|
ar->hif.ops = hif_ops;
|
|
|
ar->hif.bus = bus;
|
|
|
|