Mini optimized the spi_flash_init.c

Delete the ";"
This commit is contained in:
David Lin 2021-02-18 23:32:23 +08:00 committed by GitHub
parent e596921019
commit 69b95ac979
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ static int rt_hw_spi_flash_init(void)
if (RT_NULL == rt_sfud_flash_probe("W25Q64", "spi30")) if (RT_NULL == rt_sfud_flash_probe("W25Q64", "spi30"))
{ {
return -RT_ERROR; return -RT_ERROR;
}; }
return RT_EOK; return RT_EOK;
} }