From e08d14104cd4d5b4aeb45e56d67317a74aa1751a Mon Sep 17 00:00:00 2001 From: Sahil Somani Date: Mon, 15 Aug 2022 10:08:45 -0700 Subject: [PATCH] Updated Light HAL default implementation comment. In aosp/2167085, a few placeholder lights were added to the Light HAL default implementation. However, the comment describing this class still said that no lights would be reported. This has been fixed. Test: VtsHalLightTargetTest Bug: 240485903 Change-Id: I3ad2e2000fb0db6a62835e621bc81d77308db140 --- light/aidl/default/Lights.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/light/aidl/default/Lights.h b/light/aidl/default/Lights.h index 8cba5a1cfd..d6d5bf1ed3 100644 --- a/light/aidl/default/Lights.h +++ b/light/aidl/default/Lights.h @@ -23,7 +23,7 @@ namespace android { namespace hardware { namespace light { -// Default implementation that reports no supported lights. +// Default implementation that reports a few placeholder lights. class Lights : public BnLights { ndk::ScopedAStatus setLightState(int id, const HwLightState& state) override; ndk::ScopedAStatus getLights(std::vector* types) override;