power: Update DT2W_PATH

* TARGET_TAP_TO_WAKE_NODE is defined in if condition. But in DT2W_PATH, TARGET_DT2W_PATH is defined. Why?
* Use same flag for both, otherwise we need to define two flags for the dt2w path.
* Use TARGET_TAP_TO_WAKE_NODE instead of TARGET_DT2W_PATH, for similarity with qcom powerHAL.

Change-Id: I87cbdc3f2aa1a3f9f6509580f2c1f001129a0fda
diff --git a/power/power.c b/power/power.c
index a125f0c..56039e8 100644
--- a/power/power.c
+++ b/power/power.c
@@ -507,10 +507,10 @@
     struct samsung_power_module *samsung_pwr = (struct samsung_power_module *) module;
 
     switch (feature) {
-#ifdef DT2W_PATH
+#ifdef TARGET_TAP_TO_WAKE_NODE
         case POWER_FEATURE_DOUBLE_TAP_TO_WAKE:
             ALOGV("%s: %s double tap to wake", __func__, state ? "enabling" : "disabling");
-            sysfs_write(DT2W_PATH, state > 0 ? "1" : "0");
+            sysfs_write(TARGET_TAP_TO_WAKE_NODE, state > 0 ? "1" : "0");
             break;
 #endif
         default: