/* SPDX-License-Identifier: GPL-2.0 */ /****************************************************************************** * * Copyright (c) 2020 Intel Corporation * *****************************************************************************/ #ifndef _PON_QOS_TC_FLOWER_ #define _PON_QOS_TC_FLOWER_ enum pon_qos_tc_flower_type { TC_TYPE_UNKNOWN = 0, TC_TYPE_EXT_VLAN = 1, TC_TYPE_VLAN_FILTER = 2, TC_TYPE_QUEUE = 3, TC_TYPE_MIRRED = 4, TC_TYPE_COLMARK = 5, TC_TYPE_TRAP = 6, TC_TYPE_POLICE = 7, }; int pon_qos_tc_flower_storage_add(struct net_device *dev, unsigned long cookie, enum pon_qos_tc_flower_type type, void *arg1, void *arg2); #endif