1264095Semaste/*-
2264095Semaste * Copyright (c) 2013 The FreeBSD Foundation
3264095Semaste * All rights reserved.
4264095Semaste *
5264095Semaste * This software was developed by Benno Rice under sponsorship from
6264095Semaste * the FreeBSD Foundation.
7264095Semaste * Redistribution and use in source and binary forms, with or without
8264095Semaste * modification, are permitted provided that the following conditions
9264095Semaste * are met:
10264095Semaste * 1. Redistributions of source code must retain the above copyright
11264095Semaste *    notice, this list of conditions and the following disclaimer.
12264095Semaste * 2. Redistributions in binary form must reproduce the above copyright
13264095Semaste *    notice, this list of conditions and the following disclaimer in the
14264095Semaste *    documentation and/or other materials provided with the distribution.
15264095Semaste *
16264095Semaste * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17264095Semaste * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18264095Semaste * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19264095Semaste * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20264095Semaste * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21264095Semaste * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22264095Semaste * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23264095Semaste * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24264095Semaste * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25264095Semaste * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26264095Semaste * SUCH DAMAGE.
27264095Semaste *
28264095Semaste * $FreeBSD$
29264095Semaste */
30264095Semaste
31264095Semaste#ifndef	_EFIFB_H_
32264095Semaste#define	_EFIFB_H_
33264095Semaste
34264095Semasteint	efi_find_framebuffer(struct efi_fb *efifb);
35264095Semaste
36264095Semaste#endif /* _EFIFB_H_ */
37