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

triggered_event.h (352B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _LINUX_IIO_TRIGGERED_EVENT_H_
      3#define _LINUX_IIO_TRIGGERED_EVENT_H_
      4
      5#include <linux/interrupt.h>
      6
      7int iio_triggered_event_setup(struct iio_dev *indio_dev,
      8	irqreturn_t (*h)(int irq, void *p),
      9	irqreturn_t (*thread)(int irq, void *p));
     10void iio_triggered_event_cleanup(struct iio_dev *indio_dev);
     11
     12#endif