Commit e1c4fa77 authored by Daniel Junho's avatar Daniel Junho Committed by Greg Kroah-Hartman

staging: vboxvideo: Fix line size exceeding 80 columns.

This patch fixes the checkpatch.pl warning:

WARNING: line over 80 characters
+               vbva = (void __force *)vbox->vbva_buffers + i *
VBVA_MIN_BUFFER_SIZE;
Signed-off-by: default avatarDaniel Junho <djunho@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0ed34b38
...@@ -61,7 +61,8 @@ void vbox_enable_accel(struct vbox_private *vbox) ...@@ -61,7 +61,8 @@ void vbox_enable_accel(struct vbox_private *vbox)
if (vbox->vbva_info[i].vbva) if (vbox->vbva_info[i].vbva)
continue; continue;
vbva = (void __force *)vbox->vbva_buffers + i * VBVA_MIN_BUFFER_SIZE; vbva = (void __force *)vbox->vbva_buffers +
i * VBVA_MIN_BUFFER_SIZE;
if (!vbva_enable(&vbox->vbva_info[i], if (!vbva_enable(&vbox->vbva_info[i],
vbox->guest_pool, vbva, i)) { vbox->guest_pool, vbva, i)) {
/* very old host or driver error. */ /* very old host or driver error. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment