Commit 9509ff75 authored by Vince Hsu's avatar Vince Hsu Committed by Ben Skeggs
Browse files

drm/nouveau/mc: add missing braces



Several braces were misplaced unintentionally. That caused the msi handling
became part of the default case of the first switch statement. So add the
missing ones.

Signed-off-by: default avatarVince Hsu <vinceh@nvidia.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 9ba83106
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,

	pmc->unk260 = nouveau_mc_unk260;

	if (nv_device_is_pci(device))
	if (nv_device_is_pci(device)) {
		switch (device->pdev->device & 0x0ff0) {
		case 0x00f0:
		case 0x02e0:
@@ -139,6 +139,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
				pmc->use_msi = true;
				break;
			}
		}

		pmc->use_msi = nouveau_boolopt(device->cfgopt, "NvMSI",
					       pmc->use_msi);