diff options
author | Hans de Goede <hdegoede@redhat.com> | 2018-04-18 09:24:47 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-04-23 07:41:55 -0400 |
commit | 02cfde67df1f440c7c3c7038cc97992afb81804f (patch) | |
tree | ebb7f889aec9c6cd74cba8a9e92cc341937b531b /drivers | |
parent | e33bbe69149b802c0c77bfb822685772f85388ca (diff) |
virt: vbox: Move declarations of vboxguest private functions to private header
Move the declarations of functions from vboxguest_utils.c which are only
meant for vboxguest internal use from include/linux/vbox_utils.h to
drivers/virt/vboxguest/vboxguest_core.h.
Cc: stable@vger.kernel.org
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/virt/vboxguest/vboxguest_core.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/virt/vboxguest/vboxguest_core.h b/drivers/virt/vboxguest/vboxguest_core.h index 6c784bf4fa6d..39ed85cf9244 100644 --- a/drivers/virt/vboxguest/vboxguest_core.h +++ b/drivers/virt/vboxguest/vboxguest_core.h | |||
@@ -171,4 +171,12 @@ irqreturn_t vbg_core_isr(int irq, void *dev_id); | |||
171 | 171 | ||
172 | void vbg_linux_mouse_event(struct vbg_dev *gdev); | 172 | void vbg_linux_mouse_event(struct vbg_dev *gdev); |
173 | 173 | ||
174 | /* Private (non exported) functions form vboxguest_utils.c */ | ||
175 | void *vbg_req_alloc(size_t len, enum vmmdev_request_type req_type); | ||
176 | int vbg_req_perform(struct vbg_dev *gdev, void *req); | ||
177 | int vbg_hgcm_call32( | ||
178 | struct vbg_dev *gdev, u32 client_id, u32 function, u32 timeout_ms, | ||
179 | struct vmmdev_hgcm_function_parameter32 *parm32, u32 parm_count, | ||
180 | int *vbox_status); | ||
181 | |||
174 | #endif | 182 | #endif |