From 63d150008ad535f2cc69d5fcf7cb4b4301392c8c Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Sun, 7 Jul 2013 20:53:03 -0400 Subject: [PATCH] lpc43xx/ssp: Mark ssp_wait_until_not_busy as static --- lib/lpc43xx/ssp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lpc43xx/ssp.c b/lib/lpc43xx/ssp.c index e0f3e9b3..9e7a0ad9 100644 --- a/lib/lpc43xx/ssp.c +++ b/lib/lpc43xx/ssp.c @@ -89,7 +89,7 @@ void ssp_init(ssp_num_t ssp_num, SSP_CR1(ssp_port) = (SSP_ENABLE | mode | master_slave | slave_option); } -void ssp_wait_until_not_busy(ssp_num_t ssp_num) +static void ssp_wait_until_not_busy(ssp_num_t ssp_num) { uint32_t ssp_port;