leds-cpcap.c (cbecf716ca618fd44feda6bd9a64a8179d031fc5) leds-cpcap.c (3192f141240336dd6d7675ff374757006fed1916)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (c) 2017 Sebastian Reichel <sre@kernel.org>
4 */
5
6#include <linux/leds.h>
7#include <linux/mfd/motorola-cpcap.h>
8#include <linux/module.h>
9#include <linux/mutex.h>
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (c) 2017 Sebastian Reichel <sre@kernel.org>
4 */
5
6#include <linux/leds.h>
7#include <linux/mfd/motorola-cpcap.h>
8#include <linux/module.h>
9#include <linux/mutex.h>
10#include <linux/of_device.h>
10#include <linux/of.h>
11#include <linux/platform_device.h>
12#include <linux/regmap.h>
13#include <linux/regulator/consumer.h>
14
15#define CPCAP_LED_NO_CURRENT 0x0001
16
17struct cpcap_led_info {
18 u16 reg;

--- 208 unchanged lines hidden ---
11#include <linux/platform_device.h>
12#include <linux/regmap.h>
13#include <linux/regulator/consumer.h>
14
15#define CPCAP_LED_NO_CURRENT 0x0001
16
17struct cpcap_led_info {
18 u16 reg;

--- 208 unchanged lines hidden ---