summaryrefslogtreecommitdiffstats
path: root/include/gpio_keys.h
blob: f4a22e16dbc8db8c32e526334ba8082ac971972f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _GPIO_KEYS_H
#define _GPIO_KEYS_H

#include <poller.h>
#include <kfifo.h>

struct gpio_keys_button {
	/* Configuration parameters */
	int code;

	int gpio;
	int active_low;
};

struct gpio_keys_platform_data {
	struct gpio_keys_button *buttons;
	int nbuttons;

	/* optional */
	int fifo_size;
};

#endif