summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-zynqmp/zynqmp-bbu.c
blob: 3c5e2fe88564ae071f9eefdf548383c0df5c1a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2020 Michael Tretter <m.tretter@pengutronix.de>
 */

#include <common.h>
#include <mach/zynqmp/zynqmp-bbu.h>

int zynqmp_bbu_register_handler(const char *name, char *devicefile,
				unsigned long flags)
{
	return bbu_register_std_file_update(name, flags, devicefile,
					    filetype_zynq_image);
}