mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Merge "tv.cec: Handle an unused argument warning"
This commit is contained in:
committed by
Android (Google) Code Review
commit
de4d37fe06
@@ -63,7 +63,7 @@ struct HdmiCec : public IHdmiCec {
|
||||
Return<void> enableAudioReturnChannel(int32_t portId, bool enable) override;
|
||||
Return<bool> isConnected(int32_t portId) override;
|
||||
|
||||
static void eventCallback(const hdmi_event_t* event, void* arg) {
|
||||
static void eventCallback(const hdmi_event_t* event, void* /* arg */) {
|
||||
if (mCallback != nullptr && event != nullptr) {
|
||||
if (event->type == HDMI_EVENT_CEC_MESSAGE) {
|
||||
size_t length = std::min(event->cec.length,
|
||||
|
||||
Reference in New Issue
Block a user