diff options
author | Davide Garberi <dade.garberi@gmail.com> | 2018-01-25 16:29:18 +0100 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2018-01-25 17:06:50 +0100 |
commit | 2b16dc16492872793436435a0d4d52e4ffbba579 (patch) | |
tree | 2218d208d983746e1420deeca653aa048406c4ac /light/Light.h | |
parent | e03f3220a3bb949ca5c11b78de3c6ce5228b0d19 (diff) |
msm8996-common: light: Remove the button backlight feature
Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
Diffstat (limited to 'light/Light.h')
-rw-r--r-- | light/Light.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/light/Light.h b/light/Light.h index f21e19e..958d215 100644 --- a/light/Light.h +++ b/light/Light.h @@ -32,7 +32,6 @@ namespace implementation { struct Light : public ILight { Light(std::pair<std::ofstream, uint32_t>&& lcd_backlight, - std::vector<std::ofstream>&& button_backlight, std::ofstream&& red_led, std::ofstream&& green_led, std::ofstream&& blue_led, std::ofstream&& red_duty_pcts, std::ofstream&& green_duty_pcts, std::ofstream&& blue_duty_pcts, std::ofstream&& red_start_idx, std::ofstream&& green_start_idx, std::ofstream&& blue_start_idx, @@ -49,14 +48,12 @@ struct Light : public ILight { private: void setAttentionLight(const LightState& state); void setBatteryLight(const LightState& state); - void setButtonsBacklight(const LightState& state); void setLcdBacklight(const LightState& state); void setNotificationLight(const LightState& state); void setSpeakerBatteryLightLocked(); void setSpeakerLightLocked(const LightState& state); std::pair<std::ofstream, uint32_t> mLcdBacklight; - std::vector<std::ofstream> mButtonBacklight; std::ofstream mRedLed; std::ofstream mGreenLed; std::ofstream mBlueLed; |