swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 1ec218373b8ebda821aec00bb156a9c94fad9cd4 authored by Linus Torvalds on 23 November 2015, 00:45:59 UTC
Linux 4.4-rc2
Tip revision: 1ec2183
rotary_encoder.h
#ifndef __ROTARY_ENCODER_H__
#define __ROTARY_ENCODER_H__

struct rotary_encoder_platform_data {
	unsigned int steps;
	unsigned int axis;
	unsigned int gpio_a;
	unsigned int gpio_b;
	unsigned int inverted_a;
	unsigned int inverted_b;
	unsigned int steps_per_period;
	bool relative_axis;
	bool rollover;
	bool wakeup_source;
};

#endif /* __ROTARY_ENCODER_H__ */
back to top