mirror of
https://xff.cz/git/u-boot/
synced 2025-10-27 08:33:10 +01:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d, reversing changes made to2ee6f3a5f7. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
21 lines
381 B
C
21 lines
381 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Dummy functions to keep s5p_goni building (although it won't work)
|
|
*
|
|
* Copyright 2018 Google LLC
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/arch/pinmux.h>
|
|
|
|
int exynos_pinmux_config(int peripheral, int flags)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int pinmux_decode_periph_id(const void *blob, int node)
|
|
{
|
|
return 0;
|
|
}
|