qcacmn: Fix compliation error when disable CONFIG_LEAK_DETECTION

Fix error when disable CONFIG_LEAK_DETECTION.

Change-Id: I16d85b596ef64ad45e9fb0bb594b0a3287554e8f
CRs-Fixed: 3080460
This commit is contained in:
Jingxiang Ge
2021-11-23 14:17:41 +08:00
committato da Madan Koyyalamudi
parent 823c259075
commit 2ed71bd979
4 ha cambiato i file con 49 aggiunte e 3 eliminazioni

Vedi File

@@ -1,5 +1,7 @@
/*
* Copyright (c) 2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
*
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -21,6 +23,7 @@
#include "qdf_trace.h"
#include "qdf_types.h"
#if defined(CONFIG_LEAK_DETECTION) && defined(WLAN_TRACKER_TEST)
#define qdf_ut_tracker_bits 4 /* 16 buckets */
#define qdf_ut_tracker_item_count 3
#define qdf_ut_tracker_declare(name) \
@@ -92,4 +95,4 @@ uint32_t qdf_tracker_unit_test(void)
return errors;
}
#endif