mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 18:41:03 +00:00
17 lines
329 B
C
17 lines
329 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (C) 2021 - 2022, Xilinx, Inc.
|
||
|
* Copyright (C) 2022, Advanced Micro Devices, Inc.
|
||
|
*/
|
||
|
|
||
|
#include <linux/build_bug.h>
|
||
|
|
||
|
void mem_map_fill(void);
|
||
|
|
||
|
static inline int zynqmp_mmio_write(const u32 address, const u32 mask,
|
||
|
const u32 value)
|
||
|
{
|
||
|
BUILD_BUG();
|
||
|
return -EINVAL;
|
||
|
}
|