File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ struct fastboot_sparse_header_s
109
109
{
110
110
uint32_t magic ; /* 0xed26ff3a */
111
111
uint16_t major_version ; /* (0x1) - reject images with higher major versions */
112
- uint16_t minor_version ; /* (0x0) - allow images with higer minor versions */
112
+ uint16_t minor_version ; /* (0x0) - allow images with higher minor versions */
113
113
uint16_t file_hdr_sz ; /* 28 bytes for first revision of the file format */
114
114
uint16_t chunk_hdr_sz ; /* 12 bytes for first revision of the file format */
115
115
uint32_t blk_sz ; /* block size in bytes, must be a multiple of 4 (4096) */
@@ -652,7 +652,7 @@ static void fastboot_download(FAR struct fastboot_ctx_s *ctx,
652
652
ret = ctx -> ops -> write (ctx , response , strlen (response ));
653
653
if (ret < 0 )
654
654
{
655
- fb_err ("Reponse error [%d]\n" , - ret );
655
+ fb_err ("Response error [%d]\n" , - ret );
656
656
return ;
657
657
}
658
658
@@ -943,7 +943,7 @@ static void fastboot_upload(FAR struct fastboot_ctx_s *ctx,
943
943
ret = ctx -> ops -> write (ctx , response , strlen (response ));
944
944
if (ret < 0 )
945
945
{
946
- fb_err ("Reponse error [%d]\n" , - ret );
946
+ fb_err ("Response error [%d]\n" , - ret );
947
947
goto done ;
948
948
}
949
949
You can’t perform that action at this time.
0 commit comments