diff options
author | Weitao Hou <houweitaoo@gmail.com> | 2019-08-02 21:49:12 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-08-03 07:02:01 -0700 |
commit | aa4996b3af19f8535177ba21cb7241348a34fb94 (patch) | |
tree | 4d676e29a3c8c37713d5261f1e0e32adcbf2ee03 /mm | |
parent | 7b358c6f12dc82364f6d317f8c8f1d794adbc3f5 (diff) | |
download | linux-stable-aa4996b3af19f8535177ba21cb7241348a34fb94.tar.gz linux-stable-aa4996b3af19f8535177ba21cb7241348a34fb94.tar.bz2 linux-stable-aa4996b3af19f8535177ba21cb7241348a34fb94.zip |
mm/memory_hotplug.c: remove unneeded return for void function
return is unneeded in void function
Link: http://lkml.kernel.org/r/20190723130814.21826-1-houweitaoo@gmail.com
Signed-off-by: Weitao Hou <houweitaoo@gmail.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Oscar Salvador <osalvador@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/memory_hotplug.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 2a9bbddb0e55..c73f09913165 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -132,7 +132,6 @@ static void release_memory_resource(struct resource *res) return; release_resource(res); kfree(res); - return; } #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE @@ -979,7 +978,6 @@ static void rollback_node_hotadd(int nid) arch_refresh_nodedata(nid, NULL); free_percpu(pgdat->per_cpu_nodestats); arch_free_nodedata(pgdat); - return; } |