]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/sdiotool/brcmfmac_bus.h
ident(1): Normalizing date format
[FreeBSD/FreeBSD.git] / usr.bin / sdiotool / brcmfmac_bus.h
1 /*-
2  * SPDX-License-Identifier: ISC
3  *
4  * Copyright (c) 2010 Broadcom Corporation
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
15  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
16  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  *
18  * $FreeBSD$
19  */
20 /* The level of bus communication with the dongle */
21 enum brcmf_bus_state {
22         BRCMF_BUS_DOWN,         /* Not ready for frame transfers */
23         BRCMF_BUS_UP            /* Ready for frame transfers */
24 };
25
26 struct brcmf_bus {
27         enum brcmf_bus_state state;
28 };