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

input-poller.h (478B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2#ifndef _INPUT_POLLER_H
      3#define _INPUT_POLLER_H
      4
      5/*
      6 * Support for polling mode for input devices.
      7 */
      8#include <linux/sysfs.h>
      9
     10struct input_dev_poller;
     11
     12void input_dev_poller_finalize(struct input_dev_poller *poller);
     13void input_dev_poller_start(struct input_dev_poller *poller);
     14void input_dev_poller_stop(struct input_dev_poller *poller);
     15
     16extern struct attribute_group input_poller_attribute_group;
     17
     18#endif /* _INPUT_POLLER_H */