From c3148b1be8f519c80c4417c21b978dfef72b351b Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Tue, 12 Mar 2024 17:42:49 +0100 Subject: misc: remove GNU Indent directives Type: refactor Change-Id: I5235bf3e9aff58af6ba2c14e8c6529c4fc9ec86c Signed-off-by: Damjan Marion --- src/examples/vlib/elog_samples.c | 2 -- src/examples/vlib/main_stub.c | 12 ------------ src/examples/vlib/mc_test.c | 8 -------- 3 files changed, 22 deletions(-) (limited to 'src/examples/vlib') diff --git a/src/examples/vlib/elog_samples.c b/src/examples/vlib/elog_samples.c index a8c800df959..600292119b4 100644 --- a/src/examples/vlib/elog_samples.c +++ b/src/examples/vlib/elog_samples.c @@ -105,13 +105,11 @@ test_elog_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_elog_command, static) = { .path = "test elog sample", .short_help = "test elog sample", .function = test_elog_command_fn, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/examples/vlib/main_stub.c b/src/examples/vlib/main_stub.c index ef6475ca657..be16a2b98bc 100644 --- a/src/examples/vlib/main_stub.c +++ b/src/examples/vlib/main_stub.c @@ -30,12 +30,10 @@ main_stub_init (vlib_main_t * vm) return error; } -/* *INDENT-OFF* */ VLIB_INIT_FUNCTION (main_stub_init) = { .runs_after = VLIB_INITS("unix_physmem_init", "unix_cli_init"), }; -/* *INDENT-ON* */ #if 0 /* Node test code. */ @@ -105,7 +103,6 @@ my_func (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) return i; } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (my_node1,static) = { .function = my_func, .type = VLIB_NODE_TYPE_INPUT, @@ -117,16 +114,13 @@ VLIB_REGISTER_NODE (my_node1,static) = { [0] = "my-node2", }, }; -/* *INDENT-ON* */ -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (my_node2,static) = { .function = my_func, .name = "my-node2", .scalar_size = sizeof (my_frame_t), .vector_size = STRUCT_SIZE_OF (my_frame_t, vector[0]), }; -/* *INDENT-ON* */ #endif @@ -209,13 +203,11 @@ my_proc (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) return i; } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (my_proc_node,static) = { .function = my_proc, .type = VLIB_NODE_TYPE_PROCESS, .name = "my-proc", }; -/* *INDENT-ON* */ static uword my_proc_input (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) @@ -250,13 +242,11 @@ my_proc_input (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f) return 0; } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (my_proc_input_node,static) = { .function = my_proc_input, .type = VLIB_NODE_TYPE_INPUT, .name = "my-proc-input", }; -/* *INDENT-ON* */ static uword _unformat_farith (unformat_input_t * i, va_list * args) @@ -384,7 +374,6 @@ bar_command (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (bar_command2, static) = { .path = "bar %decimal_integer", .short_help = "bar1 command", @@ -403,7 +392,6 @@ VLIB_CLI_COMMAND (bar_command3, static) = { .function = bar_command, .function_arg = 3, }; -/* *INDENT-ON* */ #endif diff --git a/src/examples/vlib/mc_test.c b/src/examples/vlib/mc_test.c index 6d63be3a912..8fbd3c7d215 100644 --- a/src/examples/vlib/mc_test.c +++ b/src/examples/vlib/mc_test.c @@ -245,12 +245,10 @@ mc_test_process (vlib_main_t * vm, } } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (mc_test_process_node, static) = { .function = mc_test_process,.type = VLIB_NODE_TYPE_PROCESS,.name = "mc-test-process",}; -/* *INDENT-ON* */ static clib_error_t * mc_test_command (vlib_main_t * vm, @@ -277,12 +275,10 @@ mc_test_command (vlib_main_t * vm, return unformat_parse_error (input); } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_mc_command, static) = { .path = "test mc",.short_help = "Test mc command",.function = mc_test_command,}; -/* *INDENT-ON* */ static clib_error_t * mc_show_command (vlib_main_t * vm, @@ -293,12 +289,10 @@ mc_show_command (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_mc_command, static) = { .path = "show mc",.short_help = "Show mc command",.function = mc_show_command,}; -/* *INDENT-ON* */ static clib_error_t * mc_clear_command (vlib_main_t * vm, @@ -309,12 +303,10 @@ mc_clear_command (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (clear_mc_command, static) = { .path = "clear mc",.short_help = "Clear mc command",.function = mc_clear_command,}; -/* *INDENT-ON* */ static clib_error_t * mc_config (vlib_main_t * vm, unformat_input_t * input) -- cgit 1.2.3-korg