linux/drivers/leds/leds-adp5520.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * LEDs driver for Analog Devices ADP5520/ADP5501 MFD PMICs
 *
 * Copyright 2009 Analog Devices Inc.
 *
 * Loosely derived from leds-da903x:
 * Copyright (C) 2008 Compulab, Ltd.
 *	Mike Rapoport <[email protected]>
 *
 * Copyright (C) 2006-2008 Marvell International Ltd.
 *	Eric Miao <[email protected]>
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/mfd/adp5520.h>
#include <linux/slab.h>

struct adp5520_led {};

static int adp5520_led_set(struct led_classdev *led_cdev,
			   enum led_brightness value)
{}

static int adp5520_led_setup(struct adp5520_led *led)
{}

static int adp5520_led_prepare(struct platform_device *pdev)
{}

static int adp5520_led_probe(struct platform_device *pdev)
{}

static void adp5520_led_remove(struct platform_device *pdev)
{}

static struct platform_driver adp5520_led_driver =;

module_platform_driver();

MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();
MODULE_ALIAS();