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

@ -1 +1 @@
Subproject commit 8830f8f6387b287a480b849e02569b881e5cd413
Subproject commit e3d982b2f1c179747551a015d5a4c11132dbfe47

@ -1 +1 @@
Subproject commit 57c7e67c4d5374ed87a94091deee8ae65eccde64
Subproject commit 7b507f0c3c812869cb4ec5981b740ac94444b49f

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