Typo: initilize -> initialize

BUG=None
TEST=firmware_FAFTSetup

Change-Id: I9f3198ea37524811475415668170339807c5c278
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2844147
Tested-by: Greg Edelston <gredelston@google.com>
Auto-Submit: Greg Edelston <gredelston@google.com>
Reviewed-by: Andrew Luo <aluo@chromium.org>
Commit-Queue: Andrew Luo <aluo@chromium.org>
diff --git a/server/hosts/cros_host.py b/server/hosts/cros_host.py
index f1e32ff..762b92e 100644
--- a/server/hosts/cros_host.py
+++ b/server/hosts/cros_host.py
@@ -3246,7 +3246,7 @@
         """Set servo-topology info to the host-info."""
         logging.debug('Try to save servo topology to host-info.')
         if not self._servo_host:
-            logging.debug('Servo host is not initilized.')
+            logging.debug('Servo host is not initialized.')
             return
         if not self.is_servo_in_working_state():
             logging.debug('Is servo is not in working state then'
diff --git a/server/hosts/servo_host.py b/server/hosts/servo_host.py
index f34445d..99b342c 100644
--- a/server/hosts/servo_host.py
+++ b/server/hosts/servo_host.py
@@ -238,10 +238,10 @@
     def connect_servo(self):
         """ Initialize and setup servo for later use.
         """
-        self.initilize_servo()
+        self.initialize_servo()
         self.initialize_dut_for_servo()
 
-    def initilize_servo(self):
+    def initialize_servo(self):
         """Establish a connection to the servod server on this host.
 
         Initializes `self._servo` and then verifies that all network
@@ -1615,7 +1615,7 @@
             # servod is running.
             pass
         try:
-            newhost.initilize_servo()
+            newhost.initialize_servo()
             newhost.initialize_dut_for_servo()
             newhost._servo_state = servo_constants.SERVO_STATE_WORKING
             return newhost, newhost.get_servo_state()
diff --git a/server/hosts/servo_repair.py b/server/hosts/servo_repair.py
index 6164a02..4caa5d4 100644
--- a/server/hosts/servo_repair.py
+++ b/server/hosts/servo_repair.py
@@ -409,7 +409,7 @@
 
     @timeout_util.TimeoutDecorator(cros_constants.VERIFY_TIMEOUT_SEC)
     def verify(self, host):
-        host.initilize_servo()
+        host.initialize_servo()
 
     @property
     def description(self):