This line was introduced by commit fcb11918 (resources: add arch hook for preventing allocation in reserved areas). But the struct tmp was already assigned to *new in the above line, so this seems superfluous. Just remove it.
Signed-off-by: Kevin Hao <[email protected]> --- kernel/resource.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/resource.c b/kernel/resource.c index d738698..3241516 100644 --- a/kernel/resource.c +++ b/kernel/resource.c @@ -448,7 +448,6 @@ static int __find_resource(struct resource *root, struct resource *old, struct resource *this = root->child; struct resource tmp = *new, avail, alloc; - tmp.flags = new->flags; tmp.start = root->start; /* * Skip past an allocated resource that starts at 0, since the assignment -- 1.8.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

