of: Minor simplification for the of_parse_phandles_with_args()
By using 'list++' in the beginning we can simplify the code a little bit. Suggested-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
c280266a32
commit
c1bb7c6d04
|
@ -547,14 +547,12 @@ int of_parse_phandles_with_args(struct device_node *np, const char *list_name,
|
||||||
const u32 *cells;
|
const u32 *cells;
|
||||||
const phandle *phandle;
|
const phandle *phandle;
|
||||||
|
|
||||||
phandle = list;
|
phandle = list++;
|
||||||
args = list + 1;
|
args = list;
|
||||||
|
|
||||||
/* one cell hole in the list = <>; */
|
/* one cell hole in the list = <>; */
|
||||||
if (!*phandle) {
|
if (!*phandle)
|
||||||
list++;
|
|
||||||
goto next;
|
goto next;
|
||||||
}
|
|
||||||
|
|
||||||
node = of_find_node_by_phandle(*phandle);
|
node = of_find_node_by_phandle(*phandle);
|
||||||
if (!node) {
|
if (!node) {
|
||||||
|
@ -570,8 +568,7 @@ int of_parse_phandles_with_args(struct device_node *np, const char *list_name,
|
||||||
goto err1;
|
goto err1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Next phandle is at offset of one phandle cell + #cells */
|
list += *cells;
|
||||||
list += 1 + *cells;
|
|
||||||
if (list > list_end) {
|
if (list > list_end) {
|
||||||
pr_debug("%s: insufficient arguments length\n",
|
pr_debug("%s: insufficient arguments length\n",
|
||||||
np->full_name);
|
np->full_name);
|
||||||
|
|
Loading…
Reference in New Issue