Fix some SPI initialize function name changes that were missed with global SPI name changes

This commit is contained in:
Frank Benkert 2016-02-23 07:37:36 -06:00 committed by Gregory Nutt
parent 6f883fb7ea
commit f57b233489
4 changed files with 6 additions and 6 deletions

View File

@ -112,7 +112,7 @@ void sam_boardinitialize(void)
#ifdef CONFIG_SAMV7_SPI
/* Configure SPI chip selects if SPI has been enabled */
sam_spi_initialize();
sam_spidev_initialize();
#endif
#ifdef HAVE_USB

View File

@ -350,7 +350,7 @@ int sam_bringup(void);
#endif
/************************************************************************************
* Name: sam_spi_initialize
* Name: sam_spidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the SAME70-XPLD board.
@ -358,7 +358,7 @@ int sam_bringup(void);
************************************************************************************/
#ifdef CONFIG_SAMV7_SPI
void sam_spi_initialize(void);
void sam_spidev_initialize(void);
#endif
/************************************************************************************

View File

@ -112,7 +112,7 @@ void sam_boardinitialize(void)
#ifdef CONFIG_SAMV7_SPI
/* Configure SPI chip selects if SPI has been enabled */
sam_spi_initialize();
sam_spidev_initialize();
#endif
#ifdef HAVE_USB

View File

@ -586,7 +586,7 @@ int sam_bringup(void);
#endif
/************************************************************************************
* Name: sam_spi_initialize
* Name: sam_spidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the SAMV71-XULT board.
@ -594,7 +594,7 @@ int sam_bringup(void);
************************************************************************************/
#ifdef CONFIG_SAMV7_SPI
void sam_spi_initialize(void);
void sam_spidev_initialize(void);
#endif
/************************************************************************************