mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 15:41:39 +00:00
printk/index: Fix -Wunused-function warning
If CONFIG_MODULES is n, we got this: kernel/printk/index.c:146:13: warning: ‘pi_remove_file’ defined but not used [-Wunused-function] Move it inside #ifdef block to fix this warning. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Petr Mladek <pmladek@suse.com> Link: https://lore.kernel.org/r/20210804130105.18732-1-yuehaibing@huawei.com
This commit is contained in:
parent
7d9e2661f2
commit
bc17bed5fd
@ -143,12 +143,12 @@ static void pi_create_file(struct module *mod)
|
||||
mod, &dfs_index_fops);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MODULES
|
||||
static void pi_remove_file(struct module *mod)
|
||||
{
|
||||
debugfs_remove(debugfs_lookup(pi_get_module_name(mod), dfs_index));
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MODULES
|
||||
static int pi_module_notify(struct notifier_block *nb, unsigned long op,
|
||||
void *data)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user