1// Copyright 2017 The Fuchsia Authors
2//
3// Use of this source code is governed by a MIT-style
4// license that can be found in the LICENSE file or at
5// https://opensource.org/licenses/MIT
6
7#pragma once
8
9#include <zircon/boot/image.h>
10#include <zircon/compiler.h>
11
12__BEGIN_CDECLS
13
14// called at platform early init time
15// pointer to ZBI containing boot items for kernel drivers to load
16void pdev_init(const zbi_header_t* zbi);
17
18__END_CDECLS
19