SAM MMCSD/SPI related changes

This commit is contained in:
Gregory Nutt 2013-06-15 17:00:52 -06:00
parent 948c4bb06d
commit 6f24ea780b
2 changed files with 6 additions and 2 deletions

View File

@ -719,3 +719,9 @@ Configuration sub-directories
Application Configuration -> NSH Library
CONFIG_NSH_ARCHINIT=y : Board has architecture-specific initialization
NOTE: If you enable the I/O1 this configuration with USART0 as the
console and with the I/O1 module in EXT1, you *must* remove UART
jumper. Otherwise, you have lookpack on USART0 and NSH will *not*
behave very well (since its outgoing prompts also appear as incoming
commands).

View File

@ -86,7 +86,6 @@
int sam_sdinitialize(int minor)
{
#ifdef HAVE_MMCSD
FAR struct spi_dev_s *spi;
int ret;
@ -118,7 +117,6 @@ int sam_sdinitialize(int minor)
fvdbg("Successfuly bound SPI port %d to MMC/SD slot %d\n",
SAM34_MMCSDSPIPORTNO, SAM34_MMCSDSLOTNO);
#endif
return OK;
}