log: register with standardized names
[dpdk.git] / drivers / compress / mlx5 / meson.build
index 2a6dc3f..7aac329 100644 (file)
@@ -2,25 +2,25 @@
 # Copyright 2021 Mellanox Technologies, Ltd
 
 if not is_linux
-       build = false
-       reason = 'only supported on Linux'
-       subdir_done()
+    build = false
+    reason = 'only supported on Linux'
+    subdir_done()
 endif
 
 fmt_name = 'mlx5_compress'
 deps += ['common_mlx5', 'eal', 'compressdev']
 sources = files(
-       'mlx5_compress.c',
+        'mlx5_compress.c',
 )
 cflags_options = [
-       '-std=c11',
-       '-Wno-strict-prototypes',
-       '-D_BSD_SOURCE',
-       '-D_DEFAULT_SOURCE',
-       '-D_XOPEN_SOURCE=600'
+        '-std=c11',
+        '-Wno-strict-prototypes',
+        '-D_BSD_SOURCE',
+        '-D_DEFAULT_SOURCE',
+        '-D_XOPEN_SOURCE=600',
 ]
 foreach option:cflags_options
-       if cc.has_argument(option)
-               cflags += option
-       endif
+    if cc.has_argument(option)
+        cflags += option
+    endif
 endforeach