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 
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