1248dd603SAdrian Chadd /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
4248dd603SAdrian Chadd  * Copyright (c) 2013 Luiz Otavio O Souza.
5248dd603SAdrian Chadd  * All rights reserved.
6248dd603SAdrian Chadd  *
7248dd603SAdrian Chadd  * Redistribution and use in source and binary forms, with or without
8248dd603SAdrian Chadd  * modification, are permitted provided that the following conditions
9248dd603SAdrian Chadd  * are met:
10248dd603SAdrian Chadd  * 1. Redistributions of source code must retain the above copyright
11248dd603SAdrian Chadd  *    notice, this list of conditions and the following disclaimer.
12248dd603SAdrian Chadd  * 2. Redistributions in binary form must reproduce the above copyright
13248dd603SAdrian Chadd  *    notice, this list of conditions and the following disclaimer in the
14248dd603SAdrian Chadd  *    documentation and/or other materials provided with the distribution.
15248dd603SAdrian Chadd  *
16248dd603SAdrian Chadd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17248dd603SAdrian Chadd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18248dd603SAdrian Chadd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19248dd603SAdrian Chadd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20248dd603SAdrian Chadd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21248dd603SAdrian Chadd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22248dd603SAdrian Chadd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23248dd603SAdrian Chadd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24248dd603SAdrian Chadd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25248dd603SAdrian Chadd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26248dd603SAdrian Chadd  * SUCH DAMAGE.
27248dd603SAdrian Chadd  */
28248dd603SAdrian Chadd 
29248dd603SAdrian Chadd #ifndef	__IP17X_VLANS_H__
30248dd603SAdrian Chadd #define	__IP17X_VLANS_H__
31248dd603SAdrian Chadd 
32248dd603SAdrian Chadd int ip17x_reset_vlans(struct ip17x_softc *, uint32_t);
33248dd603SAdrian Chadd int ip17x_getvgroup(device_t, etherswitch_vlangroup_t *);
34248dd603SAdrian Chadd int ip17x_setvgroup(device_t, etherswitch_vlangroup_t *);
35248dd603SAdrian Chadd 
36248dd603SAdrian Chadd #endif	/* __IP17X_VLANS_H__ */
37