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

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
...@@ -124,7 +124,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine, ...@@ -124,7 +124,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
pmc->unk260 = nouveau_mc_unk260; pmc->unk260 = nouveau_mc_unk260;
if (nv_device_is_pci(device)) if (nv_device_is_pci(device)) {
switch (device->pdev->device & 0x0ff0) { switch (device->pdev->device & 0x0ff0) {
case 0x00f0: case 0x00f0:
case 0x02e0: case 0x02e0:
...@@ -139,6 +139,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine, ...@@ -139,6 +139,7 @@ nouveau_mc_create_(struct nouveau_object *parent, struct nouveau_object *engine,
pmc->use_msi = true; pmc->use_msi = true;
break; break;
} }
}
pmc->use_msi = nouveau_boolopt(device->cfgopt, "NvMSI", pmc->use_msi = nouveau_boolopt(device->cfgopt, "NvMSI",
pmc->use_msi); pmc->use_msi);
......
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