diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index a0f2b900df13047c7fcaf96195db77eef752930e..0e267def62bd46e1c8ddc044212cdb7ee2c5bb48 100755
--- a/Marlin/Marlin_main.cpp
+++ b/Marlin/Marlin_main.cpp
@@ -861,12 +861,6 @@ void setup_homepin(void) {
   #endif
 }
 
-void setup_photpin() {
-  #if HAS_PHOTOGRAPH
-    OUT_WRITE(PHOTOGRAPH_PIN, LOW);
-  #endif
-}
-
 #if HAS_CASE_LIGHT
 
   void setup_case_light() {
@@ -9745,9 +9739,12 @@ void setup() {
   #endif
 
   stepper.init();    // Initialize stepper, this enables interrupts!
-  setup_photpin();
   servo_init();
 
+  #if HAS_PHOTOGRAPH
+    OUT_WRITE(PHOTOGRAPH_PIN, LOW);
+  #endif
+
   #if HAS_CASE_LIGHT
     setup_case_light();
   #endif