Fix spelling mistakes using codespell

This commit corrects various spelling mistakes throughout the
repository. The corrections were made automatically using `codespell`[1]
tool.

[1]: https://github.com/codespell-project/codespell

Change-Id: I539a0c5baa63be240fc1c76367c0af338dd89c7b
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/oem/ibm/libpldmresponder/file_io.cpp b/oem/ibm/libpldmresponder/file_io.cpp
index b547b5b..57b89ba 100644
--- a/oem/ibm/libpldmresponder/file_io.cpp
+++ b/oem/ibm/libpldmresponder/file_io.cpp
@@ -100,7 +100,7 @@
     {
         rc = -errno;
         error(
-            "Failed to execute the DMA operation for transfering remote terminus data to socket at address '{ADDRESS}' and length '{LENGTH}' with response code '{RC}'",
+            "Failed to execute the DMA operation for transferring remote terminus data to socket at address '{ADDRESS}' and length '{LENGTH}' with response code '{RC}'",
             "RC", rc, "ADDRESS", address, "LENGTH", length);
         return rc;
     }
@@ -112,7 +112,7 @@
         rc = -errno;
         close(fd);
         error(
-            "Failed to write to Unix socket, closing socket for transfering remote terminus data to socket with response code '{RC}'",
+            "Failed to write to Unix socket, closing socket for transferring remote terminus data to socket with response code '{RC}'",
             "RC", rc);
         return rc;
     }