mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
This addresses the following sparse warning: lib/memregion.c:8:5: warning: symbol 'memregion_alloc' was not declared. Should it be static? lib/memregion.c:14:6: warning: symbol 'memregion_free' was not declared. Should it be static? Reported-by: Hulk Robot <[email protected]> Signed-off-by: Jason Yan <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Linus Torvalds <[email protected]>
20 lines
429 B
C
20 lines
429 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/* identifiers for device / performance-differentiated memory regions */
|
|
#include <linux/idr.h>
|
|
#include <linux/types.h>
|
|
#include <linux/memregion.h>
|
|
|
|
static DEFINE_IDA(memregion_ids);
|
|
|
|
int memregion_alloc(gfp_t gfp)
|
|
{
|
|
return ida_alloc(&memregion_ids, gfp);
|
|
}
|
|
EXPORT_SYMBOL(memregion_alloc);
|
|
|
|
void memregion_free(int id)
|
|
{
|
|
ida_free(&memregion_ids, id);
|
|
}
|
|
EXPORT_SYMBOL(memregion_free);
|