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
|
@ -205,10 +205,10 @@ grub_bufio_close (grub_file_t file)
|
|||
static struct grub_fs grub_bufio_fs =
|
||||
{
|
||||
.name = "bufio",
|
||||
.dir = 0,
|
||||
.open = 0,
|
||||
.read = grub_bufio_read,
|
||||
.close = grub_bufio_close,
|
||||
.label = 0,
|
||||
.fs_dir = 0,
|
||||
.fs_open = 0,
|
||||
.fs_read = grub_bufio_read,
|
||||
.fs_close = grub_bufio_close,
|
||||
.fs_label = 0,
|
||||
.next = 0
|
||||
};
|
||||
|
|
|
@ -1389,11 +1389,11 @@ grub_deflate_decompress (char *inbuf, grub_size_t insize, grub_off_t off,
|
|||
static struct grub_fs grub_gzio_fs =
|
||||
{
|
||||
.name = "gzio",
|
||||
.dir = 0,
|
||||
.open = 0,
|
||||
.read = grub_gzio_read,
|
||||
.close = grub_gzio_close,
|
||||
.label = 0,
|
||||
.fs_dir = 0,
|
||||
.fs_open = 0,
|
||||
.fs_read = grub_gzio_read,
|
||||
.fs_close = grub_gzio_close,
|
||||
.fs_label = 0,
|
||||
.next = 0
|
||||
};
|
||||
|
||||
|
|
|
@ -531,11 +531,11 @@ grub_lzopio_close (grub_file_t file)
|
|||
|
||||
static struct grub_fs grub_lzopio_fs = {
|
||||
.name = "lzopio",
|
||||
.dir = 0,
|
||||
.open = 0,
|
||||
.read = grub_lzopio_read,
|
||||
.close = grub_lzopio_close,
|
||||
.label = 0,
|
||||
.fs_dir = 0,
|
||||
.fs_open = 0,
|
||||
.fs_read = grub_lzopio_read,
|
||||
.fs_close = grub_lzopio_close,
|
||||
.fs_label = 0,
|
||||
.next = 0
|
||||
};
|
||||
|
||||
|
|
|
@ -52,11 +52,11 @@ grub_offset_close (grub_file_t file)
|
|||
|
||||
static struct grub_fs grub_offset_fs = {
|
||||
.name = "offset",
|
||||
.dir = 0,
|
||||
.open = 0,
|
||||
.read = grub_offset_read,
|
||||
.close = grub_offset_close,
|
||||
.label = 0,
|
||||
.fs_dir = 0,
|
||||
.fs_open = 0,
|
||||
.fs_read = grub_offset_read,
|
||||
.fs_close = grub_offset_close,
|
||||
.fs_label = 0,
|
||||
.next = 0
|
||||
};
|
||||
|
||||
|
|
|
@ -327,11 +327,11 @@ grub_xzio_close (grub_file_t file)
|
|||
|
||||
static struct grub_fs grub_xzio_fs = {
|
||||
.name = "xzio",
|
||||
.dir = 0,
|
||||
.open = 0,
|
||||
.read = grub_xzio_read,
|
||||
.close = grub_xzio_close,
|
||||
.label = 0,
|
||||
.fs_dir = 0,
|
||||
.fs_open = 0,
|
||||
.fs_read = grub_xzio_read,
|
||||
.fs_close = grub_xzio_close,
|
||||
.fs_label = 0,
|
||||
.next = 0
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue