Message ID | 1472024693-12912-5-git-send-email-thunder.leizhen@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/drivers/of/of_numa.c b/drivers/of/of_numa.c index afaeb9c..8723f64 100644 --- a/drivers/of/of_numa.c +++ b/drivers/of/of_numa.c @@ -179,13 +179,8 @@ int of_node_to_nid(struct device_node *device) np->name); of_node_put(np); - if (!r) { - if (nid >= MAX_NUMNODES) - pr_warn("NUMA: Node id %u exceeds maximum value\n", - nid); - else - return nid; - } + if (!r) + return nid; return NUMA_NO_NODE; }