drivers: fix indent of directory list
authorThomas Monjalon <thomas@monjalon.net>
Mon, 27 Jul 2020 17:47:07 +0000 (20:47 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 28 Jul 2020 16:27:51 +0000 (18:27 +0200)
Define each sub-directory on its own line ended with a comma,
and use a simple indent.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
drivers/meson.build

index e76ebdd..e2aeba9 100644 (file)
@@ -2,17 +2,19 @@
 # Copyright(c) 2017-2019 Intel Corporation
 
 # Defines the order in which the drivers are buit.
-dpdk_driver_classes = ['common',
-              'bus',
-              'mempool', # depends on common and bus.
-              'net',     # depends on common, bus, mempool
-              'raw',     # depends on common, bus and net.
-              'crypto',  # depends on common, bus and mempool (net in future).
-              'compress', # depends on common, bus, mempool.
-              'regex', # depends on common, bus, regexdev.
-              'vdpa',    # depends on common, bus and mempool.
-              'event',   # depends on common, bus, mempool and net.
-              'baseband'] # depends on common and bus.
+dpdk_driver_classes = [
+       'common',
+       'bus',
+       'mempool', # depends on common and bus.
+       'net',     # depends on common, bus, mempool
+       'raw',     # depends on common, bus and net.
+       'crypto',  # depends on common, bus and mempool (net in future).
+       'compress', # depends on common, bus, mempool.
+       'regex', # depends on common, bus, regexdev.
+       'vdpa',    # depends on common, bus and mempool.
+       'event',   # depends on common, bus, mempool and net.
+       'baseband', # depends on common and bus.
+]
 
 disabled_drivers = run_command(list_dir_globs, get_option('disable_drivers'),
                ).stdout().split()