ENC28J60: Missing semicolon causes error in some configurations. Noted by Maciej Wójcik

This commit is contained in:
Gregory Nutt
2016-01-09 19:56:47 -06:00
parent 4d02274d50
commit 51ee01255b
3 changed files with 3 additions and 3 deletions

Submodule configs updated: 57c7e67c4d...7b507f0c3c

View File

@@ -381,7 +381,7 @@ static inline void enc_configspi(FAR struct spi_dev_s *spi)
SPI_SETMODE(spi, CONFIG_ENC28J60_SPIMODE);
SPI_SETBITS(spi, 8);
SPI_SETFREQUENCY(spi, CONFIG_ENC28J60_FREQUENCY)
SPI_SETFREQUENCY(spi, CONFIG_ENC28J60_FREQUENCY);
}
#endif