mirror of
https://github.com/apache/nuttx.git
synced 2026-08-03 13:19:01 +00:00
boards/imx93-evk: Fix potential warning about unused variable
"ret" might be unused, which causes an error due to -Werror
This commit is contained in:
parent
03dbb82db9
commit
35ee532cb4
2 changed files with 2 additions and 2 deletions
|
|
@ -73,5 +73,5 @@ int imx9_i2c_initialize(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
return OK;
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -158,5 +158,5 @@ int imx9_spi_initialize(void)
|
|||
}
|
||||
#endif /* CONFIG_SPI_DRIVER */
|
||||
|
||||
return OK;
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue