mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
kernel/resource: fix reserve_region_with_split() section mismatch
Impact: cleanup, small kernel text size reduction, no functionality changed reserve_region_with_split() calls in to __reserve_region_with_split(), which is an __init function. The only caller of reserve_region_with_split() is an __init function, so make it __init too. Signed-off-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
acff181d35
commit
bea9211241
1 changed files with 1 additions and 1 deletions
|
@ -571,7 +571,7 @@ static void __init __reserve_region_with_split(struct resource *root,
|
|||
|
||||
}
|
||||
|
||||
void reserve_region_with_split(struct resource *root,
|
||||
void __init reserve_region_with_split(struct resource *root,
|
||||
resource_size_t start, resource_size_t end,
|
||||
const char *name)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue