diff options
author | Zhang Yanfei <zhangyanfei@cn.fujitsu.com> | 2013-05-17 10:10:38 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-05-28 06:02:13 -0400 |
commit | 9d1936cf86be8dc0cc27365bd8f1efdf23941961 (patch) | |
tree | 4d25dd012f0ea3470742638dc972c852e9aa28cd /mm/sparse.c | |
parent | c2b3ebd0d21a10c7c5c44f4f3bd55d0065a86798 (diff) |
mm/sparse: Remove unused ret in sparse_index_init
The ret variable is not used in the function, so remove it and
directly return 0 at the end of the function.
Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'mm/sparse.c')
-rw-r--r-- | mm/sparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mm/sparse.c b/mm/sparse.c index 1c91f0d3f6ab..9ac2f743f723 100644 --- a/mm/sparse.c +++ b/mm/sparse.c | |||
@@ -79,7 +79,6 @@ static int __meminit sparse_index_init(unsigned long section_nr, int nid) | |||
79 | { | 79 | { |
80 | unsigned long root = SECTION_NR_TO_ROOT(section_nr); | 80 | unsigned long root = SECTION_NR_TO_ROOT(section_nr); |
81 | struct mem_section *section; | 81 | struct mem_section *section; |
82 | int ret = 0; | ||
83 | 82 | ||
84 | if (mem_section[root]) | 83 | if (mem_section[root]) |
85 | return -EEXIST; | 84 | return -EEXIST; |
@@ -90,7 +89,7 @@ static int __meminit sparse_index_init(unsigned long section_nr, int nid) | |||
90 | 89 | ||
91 | mem_section[root] = section; | 90 | mem_section[root] = section; |
92 | 91 | ||
93 | return ret; | 92 | return 0; |
94 | } | 93 | } |
95 | #else /* !SPARSEMEM_EXTREME */ | 94 | #else /* !SPARSEMEM_EXTREME */ |
96 | static inline int sparse_index_init(unsigned long section_nr, int nid) | 95 | static inline int sparse_index_init(unsigned long section_nr, int nid) |