Home
last modified time | relevance | path

Searched refs:pDel (Results 1 – 1 of 1) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/htc/
Ddl_list.h130 static inline PDL_LIST dl_list_remove(PDL_LIST pDel) in dl_list_remove() argument
132 if (pDel->pNext) in dl_list_remove()
133 pDel->pNext->pPrev = pDel->pPrev; in dl_list_remove()
134 if (pDel->pPrev) in dl_list_remove()
135 pDel->pPrev->pNext = pDel->pNext; in dl_list_remove()
137 pDel->pNext = pDel; in dl_list_remove()
138 pDel->pPrev = pDel; in dl_list_remove()
139 return pDel; in dl_list_remove()