diff options
-rw-r--r-- | drivers/platform/goldfish/goldfish_pipe_v2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/platform/goldfish/goldfish_pipe_v2.c b/drivers/platform/goldfish/goldfish_pipe_v2.c index 3582fd68ffc2..90bac4b055a3 100644 --- a/drivers/platform/goldfish/goldfish_pipe_v2.c +++ b/drivers/platform/goldfish/goldfish_pipe_v2.c @@ -1059,7 +1059,8 @@ static int goldfish_pipe_dma_create_region( return -ENOMEM; } -long goldfish_dma_ioctl_getoff(struct goldfish_pipe *pipe, unsigned long arg) +static long goldfish_dma_ioctl_getoff(struct goldfish_pipe *pipe, + unsigned long arg) { struct device *pdev_dev = pipe->dev->pdev_dev; struct goldfish_dma_ioctl_info ioctl_data; @@ -1096,7 +1097,7 @@ long goldfish_dma_ioctl_getoff(struct goldfish_pipe *pipe, unsigned long arg) return 0; } -long goldfish_dma_ioctl_create_region(struct goldfish_pipe *pipe, +static long goldfish_dma_ioctl_create_region(struct goldfish_pipe *pipe, unsigned long arg) { struct goldfish_dma_ioctl_info ioctl_data; |