* Stage 3 for the final driver initialisation.
         */
 
-       /* Prepare Memory for control transferes */
+       /* Prepare Memory for control transfers */
        ctl_msg_buffer = devm_kzalloc(&udev->dev,
                                      sizeof(union ucan_ctl_payload),
                                      GFP_KERNEL);
        ret = ucan_device_request_in(up, UCAN_DEVICE_GET_FW_STRING, 0,
                                     sizeof(union ucan_ctl_payload));
        if (ret > 0) {
-               /* copy string while ensuring zero terminiation */
+               /* copy string while ensuring zero termination */
                strncpy(firmware_str, up->ctl_msg_buffer->raw,
                        sizeof(union ucan_ctl_payload));
                firmware_str[sizeof(union ucan_ctl_payload)] = '\0';