Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2006 Samsung Electronics
4 * Kyungmin Park <kyungmin.park@samsung.com>
5 */
6#ifndef ASMARM_ARCH_LED_H
7#define ASMARM_ARCH_LED_H
8
9struct omap_led_config {
10 struct led_classdev cdev;
11 s16 gpio;
12};
13
14struct omap_led_platform_data {
15 s16 nr_leds;
16 struct omap_led_config *leds;
17};
18
19#endif