drm/tests: Add test for drm_atomic_helper_check_modeset()
[drm/drm-misc.git] / arch / x86 / platform / geode / geode-common.h
blob9e0afd34bfad0b49931df369fc7b4ae447d4abe4
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Shared helpers to register GPIO-connected buttons and LEDs
4 * on AMD Geode boards.
5 */
7 #ifndef __PLATFORM_GEODE_COMMON_H
8 #define __PLATFORM_GEODE_COMMON_H
10 #include <linux/property.h>
12 struct geode_led {
13 unsigned int pin;
14 bool default_on;
17 int geode_create_restart_key(unsigned int pin);
18 int geode_create_leds(const char *label, const struct geode_led *leds,
19 unsigned int n_leds);
21 #endif /* __PLATFORM_GEODE_COMMON_H */