2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-02-03 11:32:31 +00:00
|
|
|
/*
|
|
|
|
* Simplefb device tree support
|
|
|
|
*
|
|
|
|
* (C) Copyright 2015
|
|
|
|
* Stephen Warren <swarren@wwwdotorg.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FDT_SIMPLEFB_H_
|
|
|
|
#define _FDT_SIMPLEFB_H_
|
2021-11-15 15:32:19 +00:00
|
|
|
int fdt_simplefb_add_node(void *blob);
|
|
|
|
int fdt_simplefb_enable_existing_node(void *blob);
|
2021-11-15 15:32:21 +00:00
|
|
|
int fdt_simplefb_enable_and_mem_rsv(void *blob);
|
2015-02-03 11:32:31 +00:00
|
|
|
#endif
|