[PATCH] mm/sparse.c: fix build warning

From: H Hartley Sweeten
Date: Fri Mar 27 2009 - 19:53:10 EST


Fix warning due to uninitialized variable.

mm/sparse.c: In function '__section_nr':
mm/sparse.c:132: warning: 'root' is used uninitialized in this function

Signed-off-by: H Hartley Sweeten <hsweeten@xxxxxxxxxxxxxxxxxxx>

---

diff --git a/mm/sparse.c b/mm/sparse.c
index 083f5b6..5657e92 100644
--- a/mm/sparse.c
+++ b/mm/sparse.c
@@ -117,7 +117,7 @@ static inline int sparse_index_init(unsigned long
section_nr, int nid)
int __section_nr(struct mem_section* ms)
{
unsigned long root_nr;
- struct mem_section* root;
+ struct mem_section *uninitialized_var(root);

for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) {
root = __nr_to_section(root_nr * SECTIONS_PER_ROOT);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/