summaryrefslogtreecommitdiff
path: root/firmware/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/system.c')
-rw-r--r--firmware/system.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/firmware/system.c b/firmware/system.c
index 2ec9ff7a41..2bbcd06378 100644
--- a/firmware/system.c
+++ b/firmware/system.c
@@ -86,7 +86,15 @@ void cpu_idle_mode(bool on_off)
86void system_reboot(void) { 86void system_reboot(void) {
87} 87}
88 88
89void system_init(void) { 89void system_init(void)
90{
91 /* Turn off un-needed devices */
92
93 /* Turn off all of the UARTS */
94 CLKCON &= ~( (1<<10) | (1<<11) |(1<<12) );
95
96 /* Turn off AC97 and Camera */
97 CLKCON &= ~( (1<<19) | (1<<20) );
90} 98}
91 99
92#endif 100#endif