diff options
Diffstat (limited to 'os/hal/templates/spi_lld.c')
-rw-r--r-- | os/hal/templates/spi_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/templates/spi_lld.c b/os/hal/templates/spi_lld.c index d25a91ae4..49147edea 100644 --- a/os/hal/templates/spi_lld.c +++ b/os/hal/templates/spi_lld.c @@ -85,7 +85,7 @@ void spi_lld_init(void) { void spi_lld_start(SPIDriver *spip) {
if (spip->state == SPI_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_SPI_USE_SPI1
if (&SPID1 == spip) {
|