|
@@ -150,6 +150,22 @@ static void hdd_hif_init_driver_state_callbacks(void *data,
|
|
|
cbk->is_target_ready = hdd_is_target_ready;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_hif_set_attribute() - API to set CE attribute if memory is limited
|
|
|
+ * @hif_ctx: hif context
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+#ifdef QCS403_MEM_OPTIMIZE
|
|
|
+static void hdd_hif_set_attribute(struct hif_opaque_softc *hif_ctx)
|
|
|
+{
|
|
|
+ hif_set_attribute(hif_ctx, HIF_LOWDESC_CE_NO_PKTLOG_CFG);
|
|
|
+}
|
|
|
+#else
|
|
|
+static void hdd_hif_set_attribute(struct hif_opaque_softc *hif_ctx)
|
|
|
+{}
|
|
|
+#endif
|
|
|
+
|
|
|
/**
|
|
|
* hdd_init_cds_hif_context() - API to set CDS HIF Context
|
|
|
* @hif: HIF Context
|
|
@@ -237,6 +253,8 @@ int hdd_hif_open(struct device *dev, void *bdev, const struct hif_bus_id *bid,
|
|
|
goto err_hif_close;
|
|
|
}
|
|
|
|
|
|
+ hdd_hif_set_attribute(hif_ctx);
|
|
|
+
|
|
|
status = hif_enable(hif_ctx, dev, bdev, bid, bus_type,
|
|
|
(reinit == true) ? HIF_ENABLE_TYPE_REINIT :
|
|
|
HIF_ENABLE_TYPE_PROBE);
|