From bb824a09a9f06b2e3a29bf46b613ac659f2f757d Mon Sep 17 00:00:00 2001 From: Chris Phoenix Date: Fri, 20 Jan 2017 18:50:23 -0800 Subject: [PATCH] tv_cec HAL uses "default" service name The getService() and registerAsService() methods of interface objects now have default parameters of "default" for the service name. HALs will not have to use any service name unless they want to register more than one service. Test: builds Bug: 33844934 Change-Id: I380736fdf1cc85976c24f104e2cf5cb22ec24364 --- tv/cec/1.0/default/service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tv/cec/1.0/default/service.cpp b/tv/cec/1.0/default/service.cpp index 3c11e245f6..74b1f6201e 100644 --- a/tv/cec/1.0/default/service.cpp +++ b/tv/cec/1.0/default/service.cpp @@ -23,5 +23,5 @@ using android::hardware::tv::cec::V1_0::IHdmiCec; using android::hardware::defaultPassthroughServiceImplementation; int main() { - return defaultPassthroughServiceImplementation("tv.cec"); + return defaultPassthroughServiceImplementation(); }