Initial bring-up change.

Temporary change for initial bring-up

Change-Id: I41280a9cb3a50c5db604f7006458881b60180825
diff --git a/power-8953.c b/power-8953.c
index 827225b..36e9207 100644
--- a/power-8953.c
+++ b/power-8953.c
@@ -53,8 +53,8 @@
 static int video_encode_hint_sent;
 static int cam_preview_hint_sent;
 
-static void process_video_encode_hint(void *metadata);
-static void process_cam_preview_hint(void *metadata);
+//static void process_video_encode_hint(void *metadata);
+//static void process_cam_preview_hint(void *metadata);
 
 int  power_hint_override(struct power_module *module, power_hint_t hint,
         void *data)
@@ -65,14 +65,16 @@
             break;
         case POWER_HINT_VIDEO_ENCODE:
         {
-            process_video_encode_hint(data);
+            //process_video_encode_hint(data);
             return HINT_HANDLED;
         }
+#if 0
         case POWER_HINT_CAM_PREVIEW:
         {
             process_cam_preview_hint(data);
             return HINT_HANDLED;
         }
+#endif
     }
     return HINT_NONE;
 }
@@ -124,6 +126,7 @@
     return HINT_HANDLED;
 }
 
+#if 0
 /* Video Encode Hint */
 static void process_video_encode_hint(void *metadata)
 {
@@ -256,4 +259,4 @@
     }
     return;
 }
-
+#endif