sdm710-common: libqti-perfd-client: Remove namespace declaration

It's pointless when using extern "C".

Change-Id: Ibdf9f06a70aa3a75687b33781c78cf2172bb334d
Signed-off-by: Chenyang Zhong <zhongcy95@gmail.com>
This commit is contained in:
Bruno Martins 2021-05-22 14:52:37 +01:00 committed by Giammarco Senatore
parent 4f60724dac
commit 4db4cdbad2
No known key found for this signature in database
GPG key ID: 661348FC1E144F04

View file

@ -3,7 +3,6 @@
#include <stdint.h> #include <stdint.h>
#include <log/log.h> #include <log/log.h>
namespace android {
extern "C" void perf_get_feedback() {} extern "C" void perf_get_feedback() {}
extern "C" void perf_hint() {} extern "C" void perf_hint() {}
extern "C" int perf_lock_acq(int handle, int duration, int arg3[], int arg4) { extern "C" int perf_lock_acq(int handle, int duration, int arg3[], int arg4) {
@ -22,4 +21,3 @@ namespace android {
return 233; return 233;
} }
extern "C" void perf_lock_use_profile() {} extern "C" void perf_lock_use_profile() {}
}