From 51ee01255b65b514adbb58f8f9734120cdece06b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 9 Jan 2016 19:56:47 -0600 Subject: [PATCH] =?UTF-8?q?ENC28J60:=20Missing=20semicolon=20causes=20erro?= =?UTF-8?q?r=20in=20some=20configurations.=20=20Noted=20by=20Maciej=20W?= =?UTF-8?q?=C3=B3jcik?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Documentation | 2 +- configs | 2 +- drivers/net/enc28j60.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation b/Documentation index 8830f8f638..e3d982b2f1 160000 --- a/Documentation +++ b/Documentation @@ -1 +1 @@ -Subproject commit 8830f8f6387b287a480b849e02569b881e5cd413 +Subproject commit e3d982b2f1c179747551a015d5a4c11132dbfe47 diff --git a/configs b/configs index 57c7e67c4d..7b507f0c3c 160000 --- a/configs +++ b/configs @@ -1 +1 @@ -Subproject commit 57c7e67c4d5374ed87a94091deee8ae65eccde64 +Subproject commit 7b507f0c3c812869cb4ec5981b740ac94444b49f diff --git a/drivers/net/enc28j60.c b/drivers/net/enc28j60.c index 7df9597a82..4a940a71ee 100644 --- a/drivers/net/enc28j60.c +++ b/drivers/net/enc28j60.c @@ -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