diff --git a/arch/sandbox/board/hostfile.c b/arch/sandbox/board/hostfile.c index af8b82c..6521722 100644 --- a/arch/sandbox/board/hostfile.c +++ b/arch/sandbox/board/hostfile.c @@ -29,7 +29,7 @@ #include #include -ssize_t hf_read(struct device_d *dev, void *buf, size_t count, ulong offset, ulong flags) +static ssize_t hf_read(struct device_d *dev, void *buf, size_t count, ulong offset, ulong flags) { struct hf_platform_data *hf = dev->platform_data; int fd = hf->fd; @@ -40,7 +40,7 @@ return linux_read(fd, buf, count); } -ssize_t hf_write(struct device_d *dev, const void *buf, size_t count, ulong offset, ulong flags) +static ssize_t hf_write(struct device_d *dev, const void *buf, size_t count, ulong offset, ulong flags) { struct hf_platform_data *hf = dev->platform_data; int fd = hf->fd;