瀏覽代碼

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
Houston Hoffman 8 年之前
父節點
當前提交
8a3539345e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      qdf/linux/src/qdf_trace.c

+ 1 - 1
qdf/linux/src/qdf_trace.c

@@ -933,6 +933,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
  *
@@ -955,7 +956,6 @@ static void dump_hex_trace(char *str, uint8_t *buf, uint8_t buf_len)
 		DPTRACE_PRINT("DPT: %s: %s", str, linebuf);
 	}
 }
-EXPORT_SYMBOL(dump_hex_trace);
 
 /**
  * qdf_dp_code_to_string() - convert dptrace code to string