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/sample-plugin/sample/node.c | 2 -- src/examples/sample-plugin/sample/sample.c | 2 -- 2 files changed, 4 deletions(-) (limited to 'src/examples/sample-plugin/sample') diff --git a/src/examples/sample-plugin/sample/node.c b/src/examples/sample-plugin/sample/node.c index a9d8b66d788..ebbf8ac3eef 100644 --- a/src/examples/sample-plugin/sample/node.c +++ b/src/examples/sample-plugin/sample/node.c @@ -688,7 +688,6 @@ VLIB_NODE_FN (sample_node) (vlib_main_t * vm, vlib_node_runtime_t * node, } #endif -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (sample_node) = { .name = "sample", @@ -706,7 +705,6 @@ VLIB_REGISTER_NODE (sample_node) = [SAMPLE_NEXT_INTERFACE_OUTPUT] = "interface-output", }, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/examples/sample-plugin/sample/sample.c b/src/examples/sample-plugin/sample/sample.c index 4aeb5358e95..d829aaffaf9 100644 --- a/src/examples/sample-plugin/sample/sample.c +++ b/src/examples/sample-plugin/sample/sample.c @@ -30,12 +30,10 @@ #define REPLY_MSG_ID_BASE sm->msg_id_base #include -/* *INDENT-OFF* */ VLIB_PLUGIN_REGISTER () = { .version = SAMPLE_PLUGIN_BUILD_VER, .description = "Sample of VPP Plugin", }; -/* *INDENT-ON* */ sample_main_t sample_main; -- cgit 1.2.3-korg