search for: 25e3b9644a3f

Displaying 1 result from an estimated 1 matches for "25e3b9644a3f".

2014 Dec 30
0
[PATCH] mc: add missing braces
...part of the default case of the first switch statement. So add the missing ones. Signed-off-by: Vince Hsu <vinceh at nvidia.com> --- nvkm/subdev/mc/base.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nvkm/subdev/mc/base.c b/nvkm/subdev/mc/base.c index ca7cee3a314a..25e3b9644a3f 100644 --- a/nvkm/subdev/mc/base.c +++ b/nvkm/subdev/mc/base.c @@ -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-...