From 5649879b0ae63a5623a41bfcc43705002de36cd3 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 12 Nov 2012 10:21:48 +0000 Subject: [PATCH] White space formatting. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4818 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/src/spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");