touch/sec: disable debug sysfs.

Below sysfs will be disabled.
/sys/devices/virtual/sec/sec_ts/
  sec_ts_enter_recovery
  sec_ts_gesture_status
  sec_ts_reg
  sec_ts_reg_manual
  sec_ts_regread
  sec_ts_regread_manual
  sec_ts_regreadsize
  sec_ts_regreadsize_manual

Bug: 194499021
Signed-off-by: Super Liu <[email protected]>
Change-Id: I2eaa3720bff3e7d98a07adfd1f4a37eec79a2c72
diff --git a/Kbuild b/Kbuild
index 04453d7..b9ee991 100644
--- a/Kbuild
+++ b/Kbuild
@@ -1,3 +1,5 @@
 obj-$(CONFIG_TOUCHSCREEN_SEC_TS)   += sec_touch.o
-sec_touch-objs   += sec_cmd.o sec_ts.o sec_ts_fw.o sec_ts_fn.o \
-	sec_ts_only_vendor.o
+sec_touch-objs   += sec_cmd.o sec_ts.o sec_ts_fw.o sec_ts_fn.o
+ifneq ($(CONFIG_TOUCHSCREEN_SEC_TS_DEBUG),)
+sec_touch-objs   += sec_ts_only_vendor.o
+endif
diff --git a/sec_ts.h b/sec_ts.h
index 9901d63..387c007 100644
--- a/sec_ts.h
+++ b/sec_ts.h
@@ -1131,10 +1131,19 @@
 		struct sec_cmd_data *sec, struct sec_ts_test_mode *mode);
 u8 sec_ts_run_cal_check(struct sec_ts_data *ts);
 
-#if (1)//!defined(CONFIG_SAMSUNG_PRODUCT_SHIP)
+#if IS_ENABLED(CONFIG_TOUCHSCREEN_SEC_TS_DEBUG)
 int sec_ts_raw_device_init(struct sec_ts_data *ts);
-#endif
 void sec_ts_raw_device_exit(struct sec_ts_data *ts);
+#else
+static inline int sec_ts_raw_device_init(struct sec_ts_data *ts)
+{
+	return 0;
+}
+
+static inline void sec_ts_raw_device_exit(struct sec_ts_data *ts)
+{
+}
+#endif
 
 extern struct class *sec_class;