qcacmn: QDF wrapper to remove minidump entries

As part of minidump support, add QDF wrapper to remove
previously added entries.

Change-Id: Iae5ed874d6dbd2f6701f174b54d839fb0a13989c
This commit is contained in:
Karunakar Dasineni
2019-06-19 10:35:35 -07:00
committed by nshrivas
parent 8d8b66b40d
commit af64fd1868
2 changed files with 18 additions and 0 deletions

View File

@@ -1386,4 +1386,14 @@ void qdf_minidump_log(void *start_addr, size_t size, const char *name)
__qdf_minidump_log(start_addr, size, name);
}
/**
* qdf_minidump_remove() - Remove memory address from minidump
* @addr: Start address of the memory previously added
*/
static inline
void qdf_minidump_remove(void *addr)
{
__qdf_minidump_remove(addr);
}
#endif /* __QDF_TRACE_H */