From 4a8aa6ae95cfbd7dddc147463ee75cc0d0806a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20W=C3=B3jcik?= Date: Wed, 1 Mar 2017 12:56:15 +0100 Subject: [PATCH] typos --- configs/pic32mx-starterkit/README.txt | 2 +- configs/pic32mx7mmb/README.txt | 2 +- configs/shenzhou/src/stm32_boot.c | 2 +- configs/shenzhou/src/stm32_usb.c | 2 +- drivers/net/Kconfig | 4 ++-- drivers/spi/spi_transfer.c | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/configs/pic32mx-starterkit/README.txt b/configs/pic32mx-starterkit/README.txt index 62f1309a62..134b163409 100644 --- a/configs/pic32mx-starterkit/README.txt +++ b/configs/pic32mx-starterkit/README.txt @@ -982,7 +982,7 @@ PIC32MX Configuration Options PIC32MX specific PHY/Ethernet device driver settings CONFIG_ETH0_PHY_KS8721 - Selects the Micrel KS8721 PHY - CONFIG_ETH0_PHY_DP83848C - Selects the National Semiconduction DP83848C PHY + CONFIG_ETH0_PHY_DP83848C - Selects the National Semiconductor DP83848C PHY CONFIG_ETH0_PHY_LAN8720 - Selects the SMSC LAN8720 PHY CONFIG_PHY_AUTONEG - Enable auto-negotion CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed. diff --git a/configs/pic32mx7mmb/README.txt b/configs/pic32mx7mmb/README.txt index 29fb0acbc1..994eee5c5b 100644 --- a/configs/pic32mx7mmb/README.txt +++ b/configs/pic32mx7mmb/README.txt @@ -560,7 +560,7 @@ PIC32MX Configuration Options PIC32MX specific PHY/Ethernet device driver settings CONFIG_ETH0_PHY_KS8721 - Selects the Micrel KS8721 PHY - CONFIG_ETH0_PHY_DP83848C - Selects the National Semiconduction DP83848C PHY + CONFIG_ETH0_PHY_DP83848C - Selects the National Semiconductor DP83848C PHY CONFIG_ETH0_PHY_LAN8720 - Selects the SMSC LAN8720 PHY CONFIG_PHY_AUTONEG - Enable auto-negotion CONFIG_PHY_SPEED100 - Select 100Mbit vs. 10Mbit speed. diff --git a/configs/shenzhou/src/stm32_boot.c b/configs/shenzhou/src/stm32_boot.c index 3f52669f7e..964a3022d7 100644 --- a/configs/shenzhou/src/stm32_boot.c +++ b/configs/shenzhou/src/stm32_boot.c @@ -64,7 +64,7 @@ * * Description: * All STM32 architectures must provide the following entry point. This entry point - * is called early in the intitialization -- after all memory has been configured + * is called early in the initialization -- after all memory has been configured * and mapped but before any devices have been initialized. * ************************************************************************************/ diff --git a/configs/shenzhou/src/stm32_usb.c b/configs/shenzhou/src/stm32_usb.c index ce32772207..b63a64c053 100644 --- a/configs/shenzhou/src/stm32_usb.c +++ b/configs/shenzhou/src/stm32_usb.c @@ -54,7 +54,7 @@ #include "up_arch.h" #include "stm32.h" #include "stm32_otgfs.h" -#include "shenshou.h" +#include "shenzhou.h" #ifdef CONFIG_STM32_OTGFS diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 83213465e4..d5466386ef 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -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" diff --git a/drivers/spi/spi_transfer.c b/drivers/spi/spi_transfer.c index 5746e4c8aa..f8a92ebc70 100644 --- a/drivers/spi/spi_transfer.c +++ b/drivers/spi/spi_transfer.c @@ -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