drivers: change indentation in build files
[dpdk.git] / drivers / net / bnx2x / meson.build
index e260b75..156f97d 100644 (file)
@@ -2,9 +2,9 @@
 # Copyright(c) 2018 Intel Corporation
 
 if is_windows
-       build = false
-       reason = 'not supported on Windows'
-       subdir_done()
+    build = false
+    reason = 'not supported on Windows'
+    subdir_done()
 endif
 
 dep = dependency('zlib', required: false, method: 'pkg-config')
@@ -12,10 +12,12 @@ build = dep.found()
 reason = 'missing dependency, "zlib"'
 ext_deps += dep
 cflags += '-DZLIB_CONST'
-sources = files('bnx2x.c',
-       'bnx2x_ethdev.c',
-       'bnx2x_rxtx.c',
-       'bnx2x_stats.c',
-       'bnx2x_vfpf.c',
-       'ecore_sp.c',
-       'elink.c')
+sources = files(
+        'bnx2x.c',
+        'bnx2x_ethdev.c',
+        'bnx2x_rxtx.c',
+        'bnx2x_stats.c',
+        'bnx2x_vfpf.c',
+        'ecore_sp.c',
+        'elink.c',
+)