Rename tm4c_spi.. to tm4c_ssi..

This commit is contained in:
Gregory Nutt 2016-02-04 10:57:25 -06:00
parent 1f86cf1c55
commit 7a72a42d47
8 changed files with 19 additions and 19 deletions

View File

@ -145,14 +145,14 @@
#ifndef __ASSEMBLY__
/************************************************************************************
* Name: tm4c_spidev_initialize
* Name: tm4c_ssidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the DK-TM4C129X.
*
************************************************************************************/
void weak_function tm4c_spidev_initialize(void);
void weak_function tm4c_ssidev_initialize(void);
/****************************************************************************
* Name: tm4c_led_initialize

View File

@ -73,15 +73,15 @@
void tiva_boardinitialize(void)
{
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
* tm4c_spidev_initialize() has been brought into the link.
* tm4c_ssidev_initialize() has been brought into the link.
*/
/* The DK-TM4C129X microSD CS and OLED are on SSI0 */
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
if (tm4c_spidev_initialize)
if (tm4c_ssidev_initialize)
{
tm4c_spidev_initialize();
tm4c_ssidev_initialize();
}
#endif

View File

@ -86,14 +86,14 @@
************************************************************************************/
/************************************************************************************
* Name: tm4c_spidev_initialize
* Name: tm4c_ssidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the DK-TM4C129X.
*
************************************************************************************/
void weak_function tm4c_spidev_initialize(void)
void weak_function tm4c_ssidev_initialize(void)
{
}

View File

@ -182,14 +182,14 @@
#ifndef __ASSEMBLY__
/************************************************************************************
* Name: tm4c_spidev_initialize
* Name: tm4c_ssidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the TM4C123G LaunchPad.
*
************************************************************************************/
void weak_function tm4c_spidev_initialize(void);
void weak_function tm4c_ssidev_initialize(void);
/****************************************************************************
* Name: tm4c_led_initialize

View File

@ -73,15 +73,15 @@
void tiva_boardinitialize(void)
{
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
* tm4c_spidev_initialize() has been brought into the link.
* tm4c_ssidev_initialize() has been brought into the link.
*/
/* The TM4C123G LaunchPad microSD CS and OLED are on SSI0 */
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
if (tm4c_spidev_initialize)
if (tm4c_ssidev_initialize)
{
tm4c_spidev_initialize();
tm4c_ssidev_initialize();
}
#endif

View File

@ -86,14 +86,14 @@
************************************************************************************/
/************************************************************************************
* Name: tm4c_spidev_initialize
* Name: tm4c_ssidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the TM4C123G LaunchPad.
*
************************************************************************************/
void weak_function tm4c_spidev_initialize(void)
void weak_function tm4c_ssidev_initialize(void)
{
}

View File

@ -134,14 +134,14 @@
#ifndef __ASSEMBLY__
/************************************************************************************
* Name: tm4c_spidev_initialize
* Name: tm4c_ssidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the EK-TM4C1294XL.
*
************************************************************************************/
void weak_function tm4c_spidev_initialize(void);
void weak_function tm4c_ssidev_initialize(void);
/****************************************************************************
* Name: tm4c_led_initialize

View File

@ -73,15 +73,15 @@
void tiva_boardinitialize(void)
{
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
* tm4c_spidev_initialize() has been brought into the link.
* tm4c_ssidev_initialize() has been brought into the link.
*/
/* The DK-TM4C129X microSD CS and OLED are on SSI0 */
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
if (tm4c_spidev_initialize)
if (tm4c_ssidev_initialize)
{
tm4c_spidev_initialize();
tm4c_ssidev_initialize();
}
#endif