leds-ariel.c (b7f8f259896f669f131713b0c74ba4d008daa71d) leds-ariel.c (3192f141240336dd6d7675ff374757006fed1916)
1// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-or-later
2/*
3 * Dell Wyse 3020 a.k.a. "Ariel" Embedded Controller LED Driver
4 *
5 * Copyright (C) 2020 Lubomir Rintel
6 */
7
8#include <linux/module.h>
9#include <linux/leds.h>
1// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-or-later
2/*
3 * Dell Wyse 3020 a.k.a. "Ariel" Embedded Controller LED Driver
4 *
5 * Copyright (C) 2020 Lubomir Rintel
6 */
7
8#include <linux/module.h>
9#include <linux/leds.h>
10#include <linux/platform_device.h>
10#include <linux/regmap.h>
11#include <linux/regmap.h>
11#include <linux/of_platform.h>
12
13enum ec_index {
14 EC_BLUE_LED = 0x01,
15 EC_AMBER_LED = 0x02,
16 EC_GREEN_LED = 0x03,
17};
18
19enum {

--- 114 unchanged lines hidden ---
12
13enum ec_index {
14 EC_BLUE_LED = 0x01,
15 EC_AMBER_LED = 0x02,
16 EC_GREEN_LED = 0x03,
17};
18
19enum {

--- 114 unchanged lines hidden ---