From 4db4cdbad27607ca7487da90fa0d4c855d027b7d Mon Sep 17 00:00:00 2001 From: Bruno Martins Date: Sat, 22 May 2021 14:52:37 +0100 Subject: [PATCH] sdm710-common: libqti-perfd-client: Remove namespace declaration It's pointless when using extern "C". Change-Id: Ibdf9f06a70aa3a75687b33781c78cf2172bb334d Signed-off-by: Chenyang Zhong --- libqti-perfd-client/client.cpp | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/libqti-perfd-client/client.cpp b/libqti-perfd-client/client.cpp index 97864cd..87c396e 100644 --- a/libqti-perfd-client/client.cpp +++ b/libqti-perfd-client/client.cpp @@ -3,23 +3,21 @@ #include #include -namespace android { - extern "C" void perf_get_feedback() {} - extern "C" void perf_hint() {} - extern "C" int perf_lock_acq(int handle, int duration, int arg3[], int arg4) { - ALOGI("perf_lock_acq: handle: %d, duration: %d, arg3[0]: %d, arg4: %d", handle, duration, arg3[0], arg4); - if (handle > 0) - return handle; +extern "C" void perf_get_feedback() {} +extern "C" void perf_hint() {} +extern "C" int perf_lock_acq(int handle, int duration, int arg3[], int arg4) { + ALOGI("perf_lock_acq: handle: %d, duration: %d, arg3[0]: %d, arg4: %d", handle, duration, arg3[0], arg4); + if (handle > 0) + return handle; - return 233; - } - extern "C" void perf_lock_cmd() {} - extern "C" int perf_lock_rel(int handle) { - ALOGI("perf_lock_rel: handle: %d", handle); - if (handle > 0) - return handle; - - return 233; - } - extern "C" void perf_lock_use_profile() {} + return 233; } +extern "C" void perf_lock_cmd() {} +extern "C" int perf_lock_rel(int handle) { + ALOGI("perf_lock_rel: handle: %d", handle); + if (handle > 0) + return handle; + + return 233; +} +extern "C" void perf_lock_use_profile() {}