From e9d374dd5422794f98124dddbf268c30834281cf Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Sun, 4 Feb 2018 18:45:12 -0600
Subject: [PATCH] Tweak sanity-check for SENSORLESS_HOMING

---
 Marlin/SanityCheck.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Marlin/SanityCheck.h b/Marlin/SanityCheck.h
index 193e9ed7b8..fa0afc475e 100644
--- a/Marlin/SanityCheck.h
+++ b/Marlin/SanityCheck.h
@@ -1485,8 +1485,8 @@ static_assert(1 >= 0
     || ENABLED( E3_IS_TMC2130 ) \
     || ENABLED( E4_IS_TMC2130 ) )
   #error "HAVE_TMC2130 requires at least one TMC2130 stepper to be set."
-#elif ENABLED(SENSORLESS_HOMING) && DISABLED(HAVE_TMC2130)
-  #error "Enable HAVE_TMC2130 to use SENSORLESS_HOMING."
+#elif ENABLED(SENSORLESS_HOMING)
+  #error "SENSORLESS_HOMING requires TMC2130 stepper drivers."
 #endif
 
 /**