mirror of
https://github.com/Evolution-X-Devices/kernel_google_b1c1
synced 2026-02-08 14:04:56 +00:00
14 lines
272 B
C
14 lines
272 B
C
|
|
#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;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif /* __ROTARY_ENCODER_H__ */
|