Imported Upstream version 16.07-rc1
[deb_dpdk.git] / drivers / net / qede / base / ecore_proto_if.h
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #ifndef __ECORE_PROTO_IF_H__
10 #define __ECORE_PROTO_IF_H__
11
12 /*
13  * PF parameters (according to personality/protocol)
14  */
15
16 struct ecore_eth_pf_params {
17         /* The following parameters are used during HW-init
18          * and these parameters need to be passed as arguments
19          * to update_pf_params routine invoked before slowpath start
20          */
21         u16 num_cons;
22 };
23
24 struct ecore_pf_params {
25         struct ecore_eth_pf_params eth_pf_params;
26 };
27
28 #endif