summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/system.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/system.c b/common/system.c
index 6cd5702c30..467218560a 100644
--- a/common/system.c
+++ b/common/system.c
@@ -1632,3 +1632,13 @@ int board_write_serial(const char *serialno)
}
#endif
#endif /* CONFIG_SERIALNO_LEN */
+
+
+__attribute__((weak))
+void clock_enable_module(enum module_id module, int enable)
+{
+ /*
+ * Default weak implementation - for chips that don't support this
+ * function.
+ */
+}