b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | /* |
| 3 | * Copyright (C) 2012 Red Hat, Inc. |
| 4 | * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com> |
| 5 | */ |
| 6 | #ifndef EFIVAR_FS_INTERNAL_H |
| 7 | #define EFIVAR_FS_INTERNAL_H |
| 8 | |
| 9 | #include <linux/list.h> |
| 10 | |
| 11 | extern const struct file_operations efivarfs_file_operations; |
| 12 | extern const struct inode_operations efivarfs_dir_inode_operations; |
| 13 | extern struct inode *efivarfs_get_inode(struct super_block *sb, |
| 14 | const struct inode *dir, int mode, dev_t dev, |
| 15 | bool is_removable); |
| 16 | |
| 17 | extern struct list_head efivarfs_list; |
| 18 | |
| 19 | #endif /* EFIVAR_FS_INTERNAL_H */ |