mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-22 23:21:24 +02:00
Remove <common.h> from all mach-s5pc1xx and cpu/armv7/s5p-common files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
20 lines
361 B
C
20 lines
361 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 <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;
|
|
}
|