6db4831e98
Android 14
26 lines
665 B
C
26 lines
665 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2018 MediaTek Inc.
|
|
*
|
|
*/
|
|
|
|
/****************************************************************************
|
|
* LED DRV functions
|
|
***************************************************************************/
|
|
#include <linux/leds.h>
|
|
|
|
extern struct led_conf_info {
|
|
int level;
|
|
int led_bits;
|
|
int trans_bits;
|
|
int max_level;
|
|
struct led_classdev cdev;
|
|
} led_conf_info;
|
|
|
|
|
|
int mtk_leds_register_notifier(struct notifier_block *nb);
|
|
int mtk_leds_unregister_notifier(struct notifier_block *nb);
|
|
int mt_leds_brightness_set(char *name, int bl_1024);
|
|
int mt_leds_max_brightness_set(char *name, int percent, bool enable);
|
|
|