Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph...
[linux-2.6-block.git] / include / linux / rotary_encoder.h
CommitLineData
73969ff0
DM
1#ifndef __ROTARY_ENCODER_H__
2#define __ROTARY_ENCODER_H__
3
4struct rotary_encoder_platform_data {
5 unsigned int steps;
6 unsigned int axis;
7 unsigned int gpio_a;
8 unsigned int gpio_b;
9 unsigned int inverted_a;
10 unsigned int inverted_b;
3a341a4c 11 unsigned int steps_per_period;
bd3ce655
HS
12 bool relative_axis;
13 bool rollover;
47ec6e5a 14 bool wakeup_source;
73969ff0
DM
15};
16
17#endif /* __ROTARY_ENCODER_H__ */