ronnie
2022-10-23 1972b0e7ed50e5b37c5633d662ea03d23b15499c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (C) 2012 Samsung Electronics Co.Ltd
 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundationr
 */
 
#ifndef __LINUX_MMS114_H
#define __LINUX_MMS114_H
 
struct mms114_platform_data {
   unsigned int x_size;
   unsigned int y_size;
   unsigned int contact_threshold;
   unsigned int moving_threshold;
   bool x_invert;
   bool y_invert;
 
   void (*cfg_pin)(bool);
};
 
#endif    /* __LINUX_MMS114_H */