qcacmn: Add feature flag for line number logging

Currently line number is not useful in the logs and to print
the line number consumes lot of memory in driver text area size.
To reduce the driver size add feature flag to enable/disable
line number logging in the driver.

Change-Id: Ie715ff9238545a5041c0241b731dc14460050316
CRs-Fixed: 2766247
This commit is contained in:
Ashish Kumar Dhanotiya
2020-08-31 12:02:09 +05:30
committed by snandini
parent b257b236b0
commit c9b7b0f885

View File

@@ -36,7 +36,11 @@
/* Type declarations */
#ifdef LOG_LINE_NUMBER
#define FL(x) "%s: %d: " x, __func__, __LINE__
#else
#define FL(x) "%s: " x, __func__
#endif
#define QDF_TRACE_BUFFER_SIZE (512)