diff options
Diffstat (limited to 'ports/ARM7-LPC214x/lpc214x_ssp.c')
-rw-r--r-- | ports/ARM7-LPC214x/lpc214x_ssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/ARM7-LPC214x/lpc214x_ssp.c b/ports/ARM7-LPC214x/lpc214x_ssp.c index 80a936f4a..708c2dbeb 100644 --- a/ports/ARM7-LPC214x/lpc214x_ssp.c +++ b/ports/ARM7-LPC214x/lpc214x_ssp.c @@ -55,7 +55,7 @@ void sspReleaseBus(void) { * rest of the system. This kind of peripheral would really need a
* dedicated DMA channel.
*/
-void sspRW(uint8_t *in, uint8_t *out, t_size n) {
+void sspRW(uint8_t *in, uint8_t *out, size_t n) {
int icnt, ocnt;
SSP *ssp = SSPBase;
|