summaryrefslogtreecommitdiff
path: root/zephyr/include/drivers/cros_displight.h
blob: 83c8577c7efd2781c1152adac5b6aecbd883d532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Copyright 2022 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/**
 * Set display backlight brightness
 *
 * @param percent Brightness in percentage
 * @return EC_SUCCESS or EC_ERROR_*
 */
int displight_set(int percent);

/**
 * Get display backlight brightness
 *
 * @return Brightness in percentage
 */
int displight_get(void);