From: Brian Paul Date: Thu, 25 Aug 2016 21:43:23 +0000 (-0600) Subject: svga: reformat some expressions in svga_texture_transfer_map() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe5a2704ecd447068c6b75bf78f12630219d3117;p=mesa.git svga: reformat some expressions in svga_texture_transfer_map() Reviewed-by: Neha Bhende --- diff --git a/src/gallium/drivers/svga/svga_resource_texture.c b/src/gallium/drivers/svga/svga_resource_texture.c index 450ed2b80c7..aff6fb1781d 100644 --- a/src/gallium/drivers/svga/svga_resource_texture.c +++ b/src/gallium/drivers/svga/svga_resource_texture.c @@ -431,9 +431,9 @@ svga_texture_transfer_map(struct pipe_context *pipe, debug_printf("%s: failed to allocate %u KB of DMA, " "splitting into %u x %u KB DMA transfers\n", __FUNCTION__, - (nblocksy*st->base.stride + 1023)/1024, - (nblocksy + st->hw_nblocksy - 1)/st->hw_nblocksy, - (st->hw_nblocksy*st->base.stride + 1023)/1024); + (nblocksy * st->base.stride + 1023) / 1024, + (nblocksy + st->hw_nblocksy - 1) / st->hw_nblocksy, + (st->hw_nblocksy * st->base.stride + 1023) / 1024); } st->swbuf = MALLOC(nblocksy * st->base.stride * d);