diff options
author | Svyatoslav Ryhel <clamor95@gmail.com> | 2023-11-27 18:16:50 +0200 |
---|---|---|
committer | Svyatoslav Ryhel <clamor95@gmail.com> | 2023-12-19 21:24:30 +0200 |
commit | 98a1c3b51cf1d5a2cb88219ef82af67d8061302b (patch) | |
tree | 4f04ede1d981860b501435349520fa169f7f0d05 /board/asus/grouper/grouper.c | |
parent | b98bed0e9cbbd70267e0d53e52fa05bedb86a75a (diff) |
board: asus: grouper: switch to DM pinmux
Drop the pinmux setup in the board in favor of setting it up in
the device tree. Device tree nodes match nodes used in the Linux
device tree.
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Diffstat (limited to 'board/asus/grouper/grouper.c')
-rw-r--r-- | board/asus/grouper/grouper.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/board/asus/grouper/grouper.c b/board/asus/grouper/grouper.c index dc1d1102c3..78eb34e7d4 100644 --- a/board/asus/grouper/grouper.c +++ b/board/asus/grouper/grouper.c @@ -7,25 +7,7 @@ * Svyatoslav Ryhel <clamor95@gmail.com> */ -#include <dm.h> #include <fdt_support.h> -#include <asm/arch/pinmux.h> -#include <asm/arch/gp_padctrl.h> - -#include "pinmux-config-grouper.h" - -/* - * Routine: pinmux_init - * Description: Do individual peripheral pinmux configs - */ -void pinmux_init(void) -{ - pinmux_config_pingrp_table(grouper_pinmux_common, - ARRAY_SIZE(grouper_pinmux_common)); - - pinmux_config_drvgrp_table(grouper_padctrl, - ARRAY_SIZE(grouper_padctrl)); -} #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) int ft_board_setup(void *blob, struct bd_info *bd) |