hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/drivers/input/touchscreen/focaltech_touch/Makefile
....@@ -5,14 +5,15 @@
55
66 # Each configuration option enables a list of files.
77
8
-obj-y += focaltech_core.o
9
-obj-y += focaltech_ex_fun.o
10
-obj-y += focaltech_ex_mode.o
11
-obj-y += focaltech_flash.o
12
-obj-y += focaltech_gesture.o
13
-obj-y += focaltech_esdcheck.o
14
-obj-y += focaltech_i2c.o
15
-obj-y += focaltech_point_report_check.o
16
-obj-y += focaltech_flash/
17
-obj-y += focaltech_test/
8
+obj-$(CONFIG_TOUCHSCREEN_FTS) += focaltech-ts.o
9
+focaltech-ts-y += focaltech_core.o
10
+focaltech-ts-y += focaltech_ex_fun.o
11
+focaltech-ts-y += focaltech_ex_mode.o
12
+focaltech-ts-y += focaltech_flash.o
13
+focaltech-ts-y += focaltech_gesture.o
14
+focaltech-ts-y += focaltech_esdcheck.o
15
+focaltech-ts-y += focaltech_i2c.o
16
+focaltech-ts-y += focaltech_point_report_check.o
17
+focaltech-ts-y += focaltech_upgrade_ft8201.o
18
+focaltech-ts-y += focaltech_test/
1819