diff options
| author | Houston Hoffman <hhoffman@codeaurora.org> | 2016-11-14 12:58:22 -0800 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-11-15 02:18:14 -0800 |
| commit | bb4f50fc68bb4ed0b466a71fc1fa4a0d68908509 (patch) | |
| tree | e50275023e344c79b0fd06e14159f006355f9931 /qdf/linux | |
| parent | f08f3748732118485fe919b7ca9d0239a093e47e (diff) | |
qcacmn: Do not export dump_hex_trace
Since dump_hex_trace is defined as a static function,
it should not be exported. The 2 scopes conflict.
Change-Id: Ia39a4fdcffeffa452b684f77d015eabd421e89e8
CRs-Fixed: 1089727
Diffstat (limited to 'qdf/linux')
| -rw-r--r-- | qdf/linux/src/qdf_trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qdf/linux/src/qdf_trace.c b/qdf/linux/src/qdf_trace.c index af375d07c3dd..c11999c4b712 100644 --- a/qdf/linux/src/qdf_trace.c +++ b/qdf/linux/src/qdf_trace.c @@ -930,6 +930,7 @@ EXPORT_SYMBOL(qdf_dp_trace_set_track); /** * dump_hex_trace() - Display the data in buffer + * @str: string to prepend the hexdump with. * @buf: buffer which contains data to be displayed * @buf_len: defines the size of the data to be displayed * @@ -953,7 +954,6 @@ static void dump_hex_trace(char *str, uint8_t *buf, uint8_t buf_len) QDF_TRACE_LEVEL_ERROR, "DPT: %s: %s", str, linebuf); } } -EXPORT_SYMBOL(dump_hex_trace); /** * qdf_dp_code_to_string() - convert dptrace code to string |
