iorap: Remove toggling iorapd on/off when using 'start' command.

Bug: 173166524
Test: adb shell stop
Test: adb shell start
Change-Id: I09722380f249405aeeb8a68287828d602313baa2
This commit is contained in:
yawanng 2020-11-16 18:45:47 +00:00
parent 99ed2152de
commit 762653bdac

View file

@ -37,7 +37,6 @@ static void ControlService(bool start, const std::string& service) {
static void ControlDefaultServices(bool start) {
std::vector<std::string> services = {
"iorapd",
"netd",
"surfaceflinger",
"audioserver",
@ -92,4 +91,4 @@ extern "C" int start_main(int argc, char** argv) {
extern "C" int stop_main(int argc, char** argv) {
return StartStop(argc, argv, false);
}
}