arm: am33xx: Make pin multiplexing functions optional
authorFelix Brack <fb@ltec.ch>
Thu, 14 Sep 2017 12:37:08 +0000 (14:37 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 22 Sep 2017 11:40:04 +0000 (07:40 -0400)
This patch provides default implementations of the two functions
set_uart_mux_conf and set_mux_conf_regs. Hence boards not using
them do not need to provide their distinct empty definitions.

Signed-off-by: Felix Brack <fb@ltec.ch>
Reviewed-by: Tom Rini <trini@konsulko.com>
arch/arm/mach-omap2/am33xx/mux.c

index 2ded47228d64d1b1f4eb48cf8e4c8a7d69e7ffdd..aad3ec8556978b1660439abcb8ebff244accc344 100644 (file)
@@ -31,3 +31,17 @@ void configure_module_pin_mux(struct module_pin_mux *mod_pin_mux)
        for (i = 0; mod_pin_mux[i].reg_offset != -1; i++)
                MUX_CFG(mod_pin_mux[i].val, mod_pin_mux[i].reg_offset);
 }
+
+/*
+ * provide a default over-writable definition
+*/
+void __weak set_uart_mux_conf(void)
+{
+}
+
+/*
+* provide a default over-writable definition
+*/
+void __weak set_mux_conf_regs(void)
+{
+}