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