Reviewed-by: Emily Deng <[email protected]>
> -----Original Message----- > From: amd-gfx [mailto:[email protected]] On Behalf > Of Chunming Zhou > Sent: Wednesday, May 30, 2018 11:15 AM > To: [email protected]; [email protected] > Cc: Deng, Emily <[email protected]>; Zhou, David(ChunMing) > <[email protected]> > Subject: [PATCH 1/2] drm/amdgpu: fix 'ISO C90 forbids mixed declarations' > > Change-Id: I412f5783e2839c53841e6ab665f939236bdc5bf1 > Signed-off-by: Chunming Zhou <[email protected]> > --- > drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c > b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c > index 9ea8fb077aba..12f0d18c6ee8 100644 > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c > @@ -657,12 +657,12 @@ static int amdgpu_cs_parser_bos(struct > amdgpu_cs_parser *p, > p->bytes_moved_vis); > > if (p->bo_list) { > - gds = p->bo_list->gds_obj; > - gws = p->bo_list->gws_obj; > - oa = p->bo_list->oa_obj; > struct amdgpu_vm *vm = &fpriv->vm; > unsigned i; > > + gds = p->bo_list->gds_obj; > + gws = p->bo_list->gws_obj; > + oa = p->bo_list->oa_obj; > for (i = 0; i < p->bo_list->num_entries; i++) { > struct amdgpu_bo *bo = p->bo_list->array[i].robj; > > -- > 2.14.1 > > _______________________________________________ > amd-gfx mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/amd-gfx _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
