summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarielle Catbagan <jcatbagan93@gmail.com>2015-07-03 10:54:52 -0700
committerEd Sutter <edsutterjr@gmail.com>2015-07-04 21:12:18 -0400
commit40b59668b7ca3bb6c2f01295ac0ae52372e2a7cc (patch)
tree2d4641b0e07a96fd0bbc4ec8b4e0c0368feba260
parentBBB: cpuio.h: Remove MONARGV0 (diff)
downloadumon-40b59668b7ca3bb6c2f01295ac0ae52372e2a7cc.tar.bz2
BBB: cpuio.c: Set devInit() to return 0 by default
devInit() is not currently being used. With the current state of uMon, all initializations unique to the AM335x are performed in initCPUio() for now
-rw-r--r--ports/beagleboneblack/cpuio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/beagleboneblack/cpuio.c b/ports/beagleboneblack/cpuio.c
index 77b0df8..75865e7 100644
--- a/ports/beagleboneblack/cpuio.c
+++ b/ports/beagleboneblack/cpuio.c
@@ -20,10 +20,10 @@ getUartDivisor(int baud, unsigned char *hi, unsigned char *lo)
* As a bare minimum, initialize the console UART here using the
* incoming 'baud' value as the baud rate.
*/
-void
+int
devInit(int baud)
{
- /* ADD_CODE_HERE */
+ return(0);
}
/* ConsoleBaudSet():