cleanup trailing whitespaces

This commit is contained in:
Felix Ruess
2012-11-08 01:19:24 +01:00
parent f818f39013
commit 5b50ae58b9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -100,7 +100,7 @@ enum SPIStatus {
enum SPIBitOrder {
SPIMSBFirst,
SPILSBFirst
SPILSBFirst
};
enum SPIClockDiv {
@@ -120,7 +120,7 @@ enum SPIClockDiv {
*/
struct spi_transaction;
typedef void (*SPICallback)( struct spi_transaction *trans );
/** SPI transaction structure.
* - Use this structure to store a request of SPI transaction
* and submit it using spi_submit function
+1 -1
View File
@@ -307,7 +307,7 @@ static void configure_socket( uint8_t _s, uint8_t _flag, uint16_t _lport, uint16
// configure destination port
w5100_sock_set( _s, SOCK_DPORT, _dport >> 8 );
w5100_sock_set( _s, SOCK_DPORT+1, _dport & 0xFF );
// send command to open the socket
w5100_sock_set( _s, SOCK_CR, SOCK_OPEN );
}