소스 검색

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 6 년 전
부모
커밋
a66ede604e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;