cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

leds-omap.h (352B)


      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