Back to home page

OSCL-LXR

 
 

    


0001 /* linux/i2c/tps6507x-ts.h
0002  *
0003  * Functions to access TPS65070 touch screen chip.
0004  *
0005  * Copyright (c) 2009 RidgeRun (todd.fischer@ridgerun.com)
0006  *
0007  *
0008  *  For licencing details see kernel-base/COPYING
0009  */
0010 
0011 #ifndef __LINUX_I2C_TPS6507X_TS_H
0012 #define __LINUX_I2C_TPS6507X_TS_H
0013 
0014 /* Board specific touch screen initial values */
0015 struct touchscreen_init_data {
0016     int poll_period;    /* ms */
0017     __u16   min_pressure;   /* min reading to be treated as a touch */
0018     __u16   vendor;
0019     __u16   product;
0020     __u16   version;
0021 };
0022 
0023 #endif /*  __LINUX_I2C_TPS6507X_TS_H */