blob: 818d75164dee1204e32c335112db36bec1d62ac7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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;
}
|