diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/fdt_simplefb.c | 8 | ||||
-rw-r--r-- | common/fdt_support.c | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/common/fdt_simplefb.c b/common/fdt_simplefb.c index 282c34fe0b9..069ced75a7f 100644 --- a/common/fdt_simplefb.c +++ b/common/fdt_simplefb.c @@ -71,7 +71,13 @@ int fdt_simplefb_add_node(void *blob) return fdt_simplefb_configure_node(blob, off); } -int fdt_simplefb_enable_existing_node(void *blob) +/** + * fdt_simplefb_enable_existing_node() - enable simple-framebuffer DT node + * + * @blob: device-tree + * Return: 0 on success, non-zero otherwise + */ +static int fdt_simplefb_enable_existing_node(void *blob) { int off; diff --git a/common/fdt_support.c b/common/fdt_support.c index dbceec6f2dc..2053fe3bad8 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -1486,11 +1486,11 @@ out: } /** - * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and + * fdt_node_offset_by_compat_reg: Find a node that matches compatible and * who's reg property matches a physical cpu address * * @blob: ptr to device tree - * @compat: compatiable string to match + * @compat: compatible string to match * @compat_off: property name * */ |