root/include/linux/platform_data/leds-omap.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   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 
   9 struct omap_led_config {
  10         struct led_classdev     cdev;
  11         s16                     gpio;
  12 };
  13 
  14 struct omap_led_platform_data {
  15         s16                     nr_leds;
  16         struct omap_led_config  *leds;
  17 };
  18 
  19 #endif

/* [<][>][^][v][top][bottom][index][help] */