1293297Semaste/*-
2293297Semaste * Copyright (c) 2013 The FreeBSD Foundation
3293297Semaste * All rights reserved.
4293297Semaste *
5293297Semaste * This software was developed by Benno Rice under sponsorship from
6293297Semaste * the FreeBSD Foundation.
7293297Semaste * Redistribution and use in source and binary forms, with or without
8293297Semaste * modification, are permitted provided that the following conditions
9293297Semaste * are met:
10293297Semaste * 1. Redistributions of source code must retain the above copyright
11293297Semaste *    notice, this list of conditions and the following disclaimer.
12293297Semaste * 2. Redistributions in binary form must reproduce the above copyright
13293297Semaste *    notice, this list of conditions and the following disclaimer in the
14293297Semaste *    documentation and/or other materials provided with the distribution.
15293297Semaste *
16293297Semaste * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17293297Semaste * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18293297Semaste * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19293297Semaste * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20293297Semaste * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21293297Semaste * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22293297Semaste * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23293297Semaste * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24293297Semaste * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25293297Semaste * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26293297Semaste * SUCH DAMAGE.
27293297Semaste *
28293297Semaste * $FreeBSD$
29293297Semaste */
30293297Semaste
31293297Semaste#ifndef	_EFIFB_H_
32293297Semaste#define	_EFIFB_H_
33293297Semaste
34293297Semasteint	efi_find_framebuffer(struct efi_fb *efifb);
35293297Semaste
36293297Semaste#endif /* _EFIFB_H_ */
37