1322038Simp/*-
2322038Simp * Copyright (c) 2017 Eric McCorkle
3322038Simp * All rights reserved.
4322038Simp *
5322038Simp * Redistribution and use in source and binary forms, with or without
6322038Simp * modification, are permitted provided that the following conditions
7322038Simp * are met:
8322038Simp * 1. Redistributions of source code must retain the above copyright
9322038Simp *    notice, this list of conditions and the following disclaimer.
10322038Simp * 2. Redistributions in binary form must reproduce the above copyright
11322038Simp *    notice, this list of conditions and the following disclaimer in the
12322038Simp *    documentation and/or other materials provided with the distribution.
13322038Simp *
14322038Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15322038Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16322038Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17322038Simp * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18322038Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19322038Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20322038Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21322038Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22322038Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23322038Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24322038Simp * SUCH DAMAGE.
25322038Simp *
26322038Simp * $FreeBSD: stable/11/stand/efi/include/efi_driver_utils.h 329114 2018-02-11 02:27:50Z kevans $
27322038Simp */
28322038Simp
29322038Simp#ifndef _EFI_DRIVER_UTILS_H_
30322038Simp#define _EFI_DRIVER_UTILS_H_
31322038Simp
32322038Simp#include <efi.h>
33322038Simp#include <efiprot.h>
34322038Simp
35322038Simpextern EFI_STATUS install_driver(EFI_DRIVER_BINDING *driver);
36322038Simpextern EFI_STATUS connect_controllers(EFI_GUID *filter);
37322038Simp
38322038Simp#endif
39