Marek Vasut | 1100e34 | 2015-07-25 11:09:11 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Marek Vasut <marex@denx.de> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <errno.h> |
Marek Vasut | 372f70d | 2015-08-10 21:21:07 +0200 | [diff] [blame^] | 9 | |
| 10 | /* Board-specific header. */ |
| 11 | #include <qts/pinmux_config.h> |
Marek Vasut | 1100e34 | 2015-07-25 11:09:11 +0200 | [diff] [blame] | 12 | |
| 13 | void sysmgr_get_pinmux_table(const unsigned long **table, |
| 14 | unsigned int *table_len) |
| 15 | { |
| 16 | *table = sys_mgr_init_table; |
| 17 | *table_len = ARRAY_SIZE(sys_mgr_init_table); |
| 18 | } |