[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1368700985-24934-1-git-send-email-haokexin@gmail.com>
Date: Thu, 16 May 2013 18:43:05 +0800
From: Kevin Hao <haokexin@...il.com>
To: Bjorn Helgaas <bjorn.helgaas@...com>,
Andrew Morton <akpm@...ux-foundation.org>
CC: <linux-kernel@...r.kernel.org>
Subject: [PATCH] resource: remove the unneeded assignment in function __find_resource
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 <haokexin@...il.com>
---
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 majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists