Hello,
we use a I2C touchscreen and it is available in the system as /dev/input/event1 to use ts_calibrate it has to be event0.
So I tried to compile the Kernel with disabled "Samsung S3C2410/generic touchscreen input driver"
If I do so I get errors in the methode
Code
- static struct s3c2410_ts_mach_info default_ts_data /*__initdata*/ = {
- .setup_cycles = CONFIG_TOUCHSCREEN_S3C_SETUP_CYCLES,
- .samples = CONFIG_TOUCHSCREEN_S3C_SAMPLES,
- .debounce = CONFIG_TOUCHSCREEN_S3C_DEBOUNCE,
- .interval = CONFIG_TOUCHSCREEN_S3C_INTERVAL,
- .threshold_p = CONFIG_TOUCHSCREEN_S3C_THRESHOLD_P,
- .jitter_p = CONFIG_TOUCHSCREEN_S3C_JITTER_P,
- .jitter_x = CONFIG_TOUCHSCREEN_S3C_JITTER_X,
- .jitter_y = CONFIG_TOUCHSCREEN_S3C_JITTER_Y
- };
in /arch/arm/plat-s3c24xx/devs.c
I also looked into the .config and the constants are indeed not in .config, when I enable the "Samsung S3C2410/generic touchscreen input driver" everything is also in .config
Any idea how to fix this?
Kind regards,
Christian Moll