From: Kenneth Graunke Date: Sat, 16 Jun 2018 17:41:38 +0000 (-0700) Subject: iris: indentation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5619c15ecc5ec5dc3224d6e9991dcf5c71d208e4;p=mesa.git iris: indentation --- diff --git a/src/gallium/drivers/iris/iris_resource.c b/src/gallium/drivers/iris/iris_resource.c index 5eccd66de59..088ef23ac3d 100644 --- a/src/gallium/drivers/iris/iris_resource.c +++ b/src/gallium/drivers/iris/iris_resource.c @@ -468,8 +468,7 @@ iris_map_tiled_memcpy(struct iris_transfer *map) * a 16-byte alignment (that is, its `x0` is 16-byte aligned). Here we * over-allocate the linear buffer to get the proper alignment. */ - map->buffer = - os_malloc_aligned(map->stride * (y2 - y1) + (x1 & 0xf), 16); + map->buffer = os_malloc_aligned(map->stride * (y2 - y1) + (x1 & 0xf), 16); map->ptr = (char *)map->buffer + (x1 & 0xf); assert(map->buffer);