Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove some useless semicolons
Reported-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
skeggsb committed Oct 3, 2017
1 parent 5833c1c commit 1be4f2c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drm/nouveau/nvkm/engine/device/tegra.c
Expand Up @@ -216,7 +216,7 @@ nvkm_device_tegra_fini(struct nvkm_device *device, bool suspend)
if (tdev->irq) {
free_irq(tdev->irq, tdev);
tdev->irq = 0;
};
}
}

static int
Expand Down
4 changes: 2 additions & 2 deletions drm/nouveau/nvkm/subdev/bios/iccsense.c
Expand Up @@ -99,7 +99,7 @@ nvbios_iccsense_parse(struct nvkm_bios *bios, struct nvbios_iccsense *iccsense)
rail->extdev_id = nvbios_rd08(bios, entry + 0x1);
res_start = 0x5;
break;
};
}

if (nvbios_extdev_parse(bios, rail->extdev_id, &extdev))
continue;
Expand All @@ -115,7 +115,7 @@ nvbios_iccsense_parse(struct nvkm_bios *bios, struct nvbios_iccsense *iccsense)
default:
rail->resistor_count = 0;
break;
};
}

for (r = 0; r < rail->resistor_count; ++r) {
rail->resistors[r].mohm = nvbios_rd08(bios, entry + res_start + r * 2);
Expand Down
2 changes: 1 addition & 1 deletion drm/nouveau/nvkm/subdev/mmu/base.c
Expand Up @@ -66,7 +66,7 @@ nvkm_vm_map_at(struct nvkm_vma *vma, u64 delta, struct nvkm_mem *node)
delta += (u64)len << vma->node->type;
}
r = r->next;
};
}

mmu->func->flush(vm);
}
Expand Down
2 changes: 1 addition & 1 deletion drm/nouveau/nvkm/subdev/pci/base.c
Expand Up @@ -87,7 +87,7 @@ nvkm_pci_fini(struct nvkm_subdev *subdev, bool suspend)
if (pci->irq >= 0) {
free_irq(pci->irq, pci);
pci->irq = -1;
};
}

if (pci->agp.bridge)
nvkm_agp_fini(pci);
Expand Down

0 comments on commit 1be4f2c

Please sign in to comment.