Changeset 1003


Ignore:
Timestamp:
Jul 3, 2015, 11:09:00 AM (9 years ago)
Author:
guerin
Message:

spi: drop inline keyword to fix compilation with GCC 5.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/tsar_boot/drivers/spi.h

    r758 r1003  
    6262 *          SPI controller
    6363 */
    64 inline volatile unsigned char spi_get_rx(struct spi_dev * spi, int index);
     64volatile unsigned char spi_get_rx(struct spi_dev * spi, int index);
    6565
    6666/**
     
    8484 * \brief   Set the index selected slave select signal (ss[index] <= '0')
    8585 */
    86 inline void spi_ss_assert(struct spi_dev * spi, int index);
     86void spi_ss_assert(struct spi_dev * spi, int index);
    8787
    8888/**
     
    9494 * \brief   Unset the index selected slave select signal (ss[index] <= '0')
    9595 */
    96 inline void spi_ss_deassert(struct spi_dev * spi, int index);
     96void spi_ss_deassert(struct spi_dev * spi, int index);
    9797
    9898/**
Note: See TracChangeset for help on using the changeset viewer.