diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-11-12 10:21:48 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-11-12 10:21:48 +0000 |
commit | 5649879b0ae63a5623a41bfcc43705002de36cd3 (patch) | |
tree | 26ebbc68e9cd901e587fd826682f1f2b6ad2c868 | |
parent | 3d1a187a6a092c515cb5a0a13f182c3cd845381d (diff) | |
download | ChibiOS-5649879b0ae63a5623a41bfcc43705002de36cd3.tar.gz ChibiOS-5649879b0ae63a5623a41bfcc43705002de36cd3.tar.bz2 ChibiOS-5649879b0ae63a5623a41bfcc43705002de36cd3.zip |
White space formatting.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4818 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/src/spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/src/spi.c b/os/hal/src/spi.c index 3817143c8..d1d97f2e9 100644 --- a/os/hal/src/spi.c +++ b/os/hal/src/spi.c @@ -317,7 +317,7 @@ void spiIgnore(SPIDriver *spip, size_t n) { * @api
*/
void spiExchange(SPIDriver *spip, size_t n,
- const void *txbuf, void *rxbuf) {
+ const void *txbuf, void *rxbuf) {
chDbgCheck((spip != NULL) && (n > 0) && (rxbuf != NULL) && (txbuf != NULL),
"spiExchange");
|