Parcourir la source

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 il y a 8 ans
Parent
commit
8a3539345e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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