mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
typos
This commit is contained in:
+2
-2
@@ -503,7 +503,7 @@ config ETH0_PHY_KSZ90x1
|
||||
bool "Micrel KSZ9021/31 PHY"
|
||||
|
||||
config ETH0_PHY_DP83848C
|
||||
bool "National Semiconduction DP83848C PHY"
|
||||
bool "National Semiconductor DP83848C PHY"
|
||||
|
||||
config ETH0_PHY_LAN8720
|
||||
bool "SMSC LAN8720 PHY"
|
||||
@@ -552,7 +552,7 @@ config ETH1_PHY_KSZ90x1
|
||||
bool "Micrel KSZ9021/31 PHY"
|
||||
|
||||
config ETH1_PHY_DP83848C
|
||||
bool "National Semiconduction DP83848C PHY"
|
||||
bool "National Semiconductor DP83848C PHY"
|
||||
|
||||
config ETH1_PHY_LAN8720
|
||||
bool "SMSC LAN8720 PHY"
|
||||
|
||||
@@ -90,7 +90,7 @@ int spi_transfer(FAR struct spi_dev_s *spi, FAR struct spi_sequence_s *seq)
|
||||
ret = SPI_SETDELAY(spi, seq->a, seq->b, seq->c);
|
||||
if (ret < 0)
|
||||
{
|
||||
spierr("ERROR: SPI_SETDELAY failed: %d\n", ret)
|
||||
spierr("ERROR: SPI_SETDELAY failed: %d\n", ret);
|
||||
SPI_LOCK(spi, false);
|
||||
return ret;
|
||||
}
|
||||
@@ -115,7 +115,7 @@ int spi_transfer(FAR struct spi_dev_s *spi, FAR struct spi_sequence_s *seq)
|
||||
ret = SPI_HWFEATURES(spi, trans->hwfeat);
|
||||
if (ret < 0)
|
||||
{
|
||||
spierr("ERROR: SPI_HWFEATURES failed: %d\n", ret)
|
||||
spierr("ERROR: SPI_HWFEATURES failed: %d\n", ret);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
@@ -124,7 +124,7 @@ int spi_transfer(FAR struct spi_dev_s *spi, FAR struct spi_sequence_s *seq)
|
||||
ret = SPI_CMDDATA(spi, seq->dev, trans->cmd);
|
||||
if (ret < 0)
|
||||
{
|
||||
spierr("ERROR: SPI_CMDDATA failed: %d\n", ret)
|
||||
spierr("ERROR: SPI_CMDDATA failed: %d\n", ret);
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user