From 3892086590df75beb0f58a8cd3ae65adb62da874 Mon Sep 17 00:00:00 2001 From: Brett Gordon Date: Thu, 23 Jun 2016 12:57:46 -0400 Subject: [PATCH] dwtime: revise call to dw_transaction for recent call change --- Kernel/platform-coco3/dwtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-coco3/dwtime.c b/Kernel/platform-coco3/dwtime.c index 9b54dd65..1556e657 100644 --- a/Kernel/platform-coco3/dwtime.c +++ b/Kernel/platform-coco3/dwtime.c @@ -16,7 +16,7 @@ static int get_time( uint8_t *tbuf ) int ret; tbuf[0]=0x23; - ret=dw_transaction( tbuf, 1, tbuf, 6 ); + ret=dw_transaction( tbuf, 1, tbuf, 6, 0 ); if( ret ) return -1; secs = tbuf[5]; return 0; -- 2.34.1