[BACK]Return to bus_spi.c CVS log [TXT][DIR] Up to [local] / funnyos / dev

Annotation of funnyos/dev/bus_spi.c, Revision 1.1

1.1     ! nbrk        1: /*
        !             2:  * $Id$
        !             3:  */
        !             4: #include <sys/types.h>
        !             5: #include <sys/bus_spi.h>
        !             6:
        !             7: uint8_t
        !             8: spi_bus_transmit(struct spi_bus_handle *sbh, uint8_t data)
        !             9: {
        !            10:        return(sbh->sb_transmitfunc(sbh->sb_dd, data));
        !            11: }
        !            12:

CVSweb