summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-zynqmp/zynqmp-bbu.c
blob: 7ac8c2b8a9946f7f0806a41cddb65c9545902bf7 (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-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);
}