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:

committed by
nshrivas

parent
8d8b66b40d
commit
af64fd1868
@@ -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 */
|
||||
|
Reference in New Issue
Block a user