New upstream version 18.05
[deb_dpdk.git] / examples / ip_pipeline / pipeline / pipeline_master.c
diff --git a/examples/ip_pipeline/pipeline/pipeline_master.c b/examples/ip_pipeline/pipeline/pipeline_master.c
deleted file mode 100644 (file)
index b0d730a..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2010-2015 Intel Corporation
- */
-
-#include "pipeline_master.h"
-#include "pipeline_master_be.h"
-
-static struct pipeline_fe_ops pipeline_master_fe_ops = {
-       .f_init = NULL,
-       .f_post_init = NULL,
-       .f_free = NULL,
-       .f_track = NULL,
-       .cmds = NULL,
-};
-
-struct pipeline_type pipeline_master = {
-       .name = "MASTER",
-       .be_ops = &pipeline_master_be_ops,
-       .fe_ops = &pipeline_master_fe_ops,
-};