New upstream version 18.02
[deb_dpdk.git] / examples / ip_pipeline / pipeline / pipeline_master.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2015 Intel Corporation
3  */
4
5 #include "pipeline_master.h"
6 #include "pipeline_master_be.h"
7
8 static struct pipeline_fe_ops pipeline_master_fe_ops = {
9         .f_init = NULL,
10         .f_post_init = NULL,
11         .f_free = NULL,
12         .f_track = NULL,
13         .cmds = NULL,
14 };
15
16 struct pipeline_type pipeline_master = {
17         .name = "MASTER",
18         .be_ops = &pipeline_master_be_ops,
19         .fe_ops = &pipeline_master_fe_ops,
20 };