Change fs functions to add fs_ prefix
This avoid conflict with gnulib Signed-off-by: Vladimir Serbinenko <phcoder@google.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
08452decc8
commit
afeb7b4bd9
55 changed files with 260 additions and 259 deletions
|
@ -1212,12 +1212,12 @@ grub_ntfs_uuid (grub_device_t device, char **uuid)
|
|||
static struct grub_fs grub_ntfs_fs =
|
||||
{
|
||||
.name = "ntfs",
|
||||
.dir = grub_ntfs_dir,
|
||||
.open = grub_ntfs_open,
|
||||
.read = grub_ntfs_read,
|
||||
.close = grub_ntfs_close,
|
||||
.label = grub_ntfs_label,
|
||||
.uuid = grub_ntfs_uuid,
|
||||
.fs_dir = grub_ntfs_dir,
|
||||
.fs_open = grub_ntfs_open,
|
||||
.fs_read = grub_ntfs_read,
|
||||
.fs_close = grub_ntfs_close,
|
||||
.fs_label = grub_ntfs_label,
|
||||
.fs_uuid = grub_ntfs_uuid,
|
||||
#ifdef GRUB_UTIL
|
||||
.reserved_first_sector = 1,
|
||||
.blocklist_install = 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue