drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c:82:2-3: Unneeded semicolon

From: kbuild test robot
Date: Wed Oct 14 2015 - 07:28:40 EST


tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 5b5f1455272e23f4e7889cec37228802d8d01adf
commit: 2b700825e7a7702fb862edba1262c98040dc1bf6 drm/nouveau/mc: move device irq handling to platform-specific code
date: 7 weeks ago


coccinelle warnings: (new ones prefixed by >>)

>> drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c:82:2-3: Unneeded semicolon

vim +82 drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c

66 nvkm_mc_intr_unarm(mc);
67 if (pci->msi)
68 pci->func->msi_rearm(pci);
69 nvkm_mc_intr(mc, &handled);
70 nvkm_mc_intr_rearm(mc);
71 }
72 return handled ? IRQ_HANDLED : IRQ_NONE;
73 }
74
75 static int
76 nvkm_pci_fini(struct nvkm_subdev *subdev, bool suspend)
77 {
78 struct nvkm_pci *pci = nvkm_pci(subdev);
79 if (pci->irq >= 0) {
80 free_irq(pci->irq, pci);
81 pci->irq = -1;
> 82 };
83 return 0;
84 }
85
86 static int
87 nvkm_pci_init(struct nvkm_subdev *subdev)
88 {
89 struct nvkm_pci *pci = nvkm_pci(subdev);
90 struct pci_dev *pdev = pci->pdev;

---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/