Explorar el Código

qcacmn: Replace reference to typedef cds_context_type

To align with the Linux Kernel coding style typedef cds_context_type
is in the process of being removed, so replace the reference in epping
with a reference to the underlying struct.

Change-Id: Ifdc5bca8d7aa97bf7dc06238c4f9fddc304a0d05
CRs-Fixed: 2250663
Jeff Johnson hace 6 años
padre
commit
a66ede604e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      utils/epping/src/epping_main.c

+ 1 - 1
utils/epping/src/epping_main.c

@@ -209,7 +209,7 @@ int epping_enable(struct device *parent_dev)
 {
 	int ret = 0;
 	epping_context_t *pEpping_ctx = NULL;
-	cds_context_type *p_cds_context = NULL;
+	struct cds_context *p_cds_context = NULL;
 	qdf_device_t qdf_ctx;
 	struct htc_init_info htcInfo;
 	struct hif_opaque_softc *scn;