mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
e2932310a5
Move all exynos boards over to use CONFIG_BLK. This converts s5p_goni also, but adding dummy functions for pinmux and peripheral ID. This will not function correctly, but gives the maintainer more time to convert the board if desired. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
20 lines
381 B
C
20 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;
|
|
}
|