libfdt: Fix fdt_getprop_by_offset() parameter name in documentation

The second parameter of fdt_getprop_by_offset() is called "offset", not
"ffset".

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Geert Uytterhoeven 2018-12-21 14:01:32 +01:00 committed by David Gibson
parent 7cbc550f90
commit 5aafd7ca43
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset,
/**
* fdt_getprop_by_offset - retrieve the value of a property at a given offset
* @fdt: pointer to the device tree blob
* @ffset: offset of the property to read
* @offset: offset of the property to read
* @namep: pointer to a string variable (will be overwritten) or NULL
* @lenp: pointer to an integer variable (will be overwritten) or NULL
*