1
0
Fork 0

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

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

Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
hifive-unleashed-5.1
Nikanth Karthikesan 2011-03-24 11:46:18 +05:30 committed by Jiri Kosina
parent 06794eaeb7
commit 9f0af69b2d
1 changed files with 4 additions and 5 deletions

View File

@ -396,15 +396,14 @@ memory_probe_store(struct class *class, struct class_attribute *attr,
ret = add_memory(nid, phys_addr,
PAGES_PER_SECTION << PAGE_SHIFT);
if (ret)
break;
goto out;
phys_addr += MIN_MEMORY_BLOCK_SIZE;
}
if (ret)
count = ret;
return count;
ret = count;
out:
return ret;
}
static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store);