xref: /openbmc/u-boot/arch/arm/mach-socfpga/wrap_pinmux_config.c (revision 83d290c56fab2d38cd1ab4c4cc7099559c1d5046)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2015 Marek Vasut <marex@denx.de>
4  */
5 
6 #include <common.h>
7 #include <errno.h>
8 
9 /* Board-specific header. */
10 #include <qts/pinmux_config.h>
11 
sysmgr_get_pinmux_table(const u8 ** table,unsigned int * table_len)12 void sysmgr_get_pinmux_table(const u8 **table, unsigned int *table_len)
13 {
14 	*table = sys_mgr_init_table;
15 	*table_len = ARRAY_SIZE(sys_mgr_init_table);
16 }
17