From 5619c15ecc5ec5dc3224d6e9991dcf5c71d208e4 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Sat, 16 Jun 2018 10:41:38 -0700 Subject: [PATCH] iris: indentation --- src/gallium/drivers/iris/iris_resource.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.30.2