#include <linux/kernel.h>
#include <linux/initrd.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_fdt.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <asm/setup.h>
#include <asm/page.h>
Go to the source code of this file.
of_fdt_get_property - Given a node in the given flat blob, return the property ptr
Definition at line 38 of file fdt.c.
Definition at line 28 of file fdt.c.
of_fdt_is_compatible - Return true if given node from the given blob has compat in its compatible list : A device tree blob : node to test : compatible string to compare with compatible list.
On match, returns a non-zero value with smaller values returned for more specific compatible values.
Definition at line 86 of file fdt.c.
of_fdt_match - Return true if node matches a list of compatible values
Definition at line 110 of file fdt.c.
of_fdt_unflatten_tree - create tree of device_nodes from flat blob
unflattens the device-tree passed by the firmware, creating the tree of struct device_node. It also fills the "name" and "type" pointers of the nodes so the normal device-tree walking functions can be used.
Definition at line 424 of file fdt.c.