Marek Vasut | 2d779b3 | 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 | f6badb0d | 2015-08-10 21:21:07 +0200 | [diff] [blame] | 9 | |
| 10 | /* Board-specific header. */ |
| 11 | #include <qts/pinmux_config.h> |
Marek Vasut | 2d779b3 | 2015-07-25 11:09:11 +0200 | [diff] [blame] | 12 | |
Marek Vasut | cc9429a | 2015-08-10 22:17:46 +0200 | [diff] [blame] | 13 | void sysmgr_get_pinmux_table(const u8 **table, unsigned int *table_len) |
Marek Vasut | 2d779b3 | 2015-07-25 11:09:11 +0200 | [diff] [blame] | 14 | { |
| 15 | *table = sys_mgr_init_table; |
| 16 | *table_len = ARRAY_SIZE(sys_mgr_init_table); |
| 17 | } |