From a66ede604eed52e9fc1d24bb1f93e1fe8665e405 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Tue, 29 May 2018 14:52:24 -0700 Subject: [PATCH] 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 --- utils/epping/src/epping_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/epping/src/epping_main.c b/utils/epping/src/epping_main.c index ba230e3e9d..11d71faa27 100644 --- a/utils/epping/src/epping_main.c +++ b/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;