Skip to content
Snippets Groups Projects
Commit 9f0af69b authored by Nikanth Karthikesan's avatar Nikanth Karthikesan Committed by Jiri Kosina
Browse files

sysfs-memory: fix uninitialized variable warning and clean-up code.


sysfs-memory: Fix uninitialized variable warning and clean-up code.

Signed-off-by: default avatarNikanth Karthikesan <knikanth@suse.de>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 06794eae
Branches
Tags
No related merge requests found
...@@ -396,15 +396,14 @@ memory_probe_store(struct class *class, struct class_attribute *attr, ...@@ -396,15 +396,14 @@ memory_probe_store(struct class *class, struct class_attribute *attr,
ret = add_memory(nid, phys_addr, ret = add_memory(nid, phys_addr,
PAGES_PER_SECTION << PAGE_SHIFT); PAGES_PER_SECTION << PAGE_SHIFT);
if (ret) if (ret)
break; goto out;
phys_addr += MIN_MEMORY_BLOCK_SIZE; phys_addr += MIN_MEMORY_BLOCK_SIZE;
} }
if (ret) ret = count;
count = ret; out:
return ret;
return count;
} }
static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store); static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment