mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 14:30:53 +07:00
67b43e5904
The BD6107 is a multi-purpose 10 channels LED driver for the mobile market. Only the main channel is supported by this driver. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
20 lines
414 B
C
20 lines
414 B
C
/*
|
|
* bd6107.h - Rohm BD6107 LEDs Driver
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
#ifndef __BD6107_H__
|
|
#define __BD6107_H__
|
|
|
|
struct device;
|
|
|
|
struct bd6107_platform_data {
|
|
struct device *fbdev;
|
|
int reset; /* Reset GPIO */
|
|
unsigned int def_value;
|
|
};
|
|
|
|
#endif
|