1/*
2 * ADMtek switch setup functions
3 *
4 * Copyright 2007, Broadcom Corporation
5 * All Rights Reserved.
6 *
7 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
8 * the contents of this file may not be disclosed to third parties, copied
9 * or duplicated in any form, in whole or in part, without the prior
10 * written permission of Broadcom Corporation.
11 *
12 * $Id: etc_adm.h,v 1.1.1.1 2008/10/15 03:25:54 james26_jang Exp $
13 */
14
15#ifndef _adm_h_
16#define _adm_h_
17
18/* forward declarations */
19typedef struct adm_info_s adm_info_t;
20
21/* interface prototypes */
22extern adm_info_t *adm_attach(sb_t *sbh, char *vars);
23extern void adm_detach(adm_info_t *adm);
24extern int adm_enable_device(adm_info_t *adm);
25extern int adm_config_vlan(adm_info_t *adm);
26
27#endif /* _adm_h_ */
28