Index: /trunk/src/VBox/Additions/linux/drm/vbox_irq.c
===================================================================
--- /trunk/src/VBox/Additions/linux/drm/vbox_irq.c	(revision 59793)
+++ /trunk/src/VBox/Additions/linux/drm/vbox_irq.c	(revision 59794)
@@ -62,10 +62,10 @@
 irqreturn_t vbox_irq_handler(int irq, void *arg)
 {
-	struct drm_device *dev = (struct drm_device *) arg;
-	struct vbox_private *vbox = (struct vbox_private *)dev->dev_private;
-	uint32_t host_flags = vbox_get_flags(vbox);
+    struct drm_device *dev = (struct drm_device *) arg;
+    struct vbox_private *vbox = (struct vbox_private *)dev->dev_private;
+    uint32_t host_flags = vbox_get_flags(vbox);
 
-	if (!(host_flags & HGSMIHOSTFLAGS_IRQ))
-		return IRQ_NONE;
+    if (!(host_flags & HGSMIHOSTFLAGS_IRQ))
+        return IRQ_NONE;
 
     /* Due to a bug in the initial host implementation of hot-plug interrupts,
@@ -76,6 +76,6 @@
         && !(host_flags & HGSMIHOSTFLAGS_VSYNC))
         schedule_work(&vbox->hotplug_work);
-	vbox_clear_irq();
-	return IRQ_HANDLED;
+    vbox_clear_irq();
+    return IRQ_HANDLED;
 }
 
@@ -121,5 +121,5 @@
 static void vbox_hotplug_worker(struct work_struct *work)
 {
-	struct vbox_private *vbox = container_of(work, struct vbox_private,
+    struct vbox_private *vbox = container_of(work, struct vbox_private,
                                              hotplug_work);
 
@@ -133,18 +133,18 @@
 int vbox_irq_init(struct vbox_private *vbox)
 {
-	int ret;
+    int ret;
 
     LogFunc(("vboxvideo: %d: vbox=%p\n", __LINE__, vbox));
     vbox_update_mode_hints(vbox);
-	ret = drm_irq_install(vbox->dev, vbox->dev->pdev->irq);
-	if (unlikely(ret != 0)) {
-	    vbox_irq_fini(vbox);
-		DRM_ERROR("Failed installing irq: %d\n", ret);
-		return 1;
-	}
-	INIT_WORK(&vbox->hotplug_work, vbox_hotplug_worker);
-	vbox->isr_installed = true;
+    ret = drm_irq_install(vbox->dev, vbox->dev->pdev->irq);
+    if (unlikely(ret != 0)) {
+        vbox_irq_fini(vbox);
+        DRM_ERROR("Failed installing irq: %d\n", ret);
+        return 1;
+    }
+    INIT_WORK(&vbox->hotplug_work, vbox_hotplug_worker);
+    vbox->isr_installed = true;
     LogFunc(("vboxvideo: %d: vbox=%p\n", __LINE__, vbox));
-	return 0;
+    return 0;
 }
 
