Callback iv_update_beacon could be called before a beacon was allocated
[ralink_drivers/rt2860_fbsd8.git] / rt2860_led.h
blob74f479186140bbeadbd7474afe6d81d4dc27dbdb
2 /*-
3 * Copyright (c) 2009-2010 Alexander Egorenkov <egorenar@gmail.com>
4 * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
6 * Permission to use, copy, modify, and 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.
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
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #ifndef _RT2860_LED_H_
20 #define _RT2860_LED_H_
22 #include "rt2860_softc.h"
24 #define RT2860_LED_CMD_RADIO_OFF 0
25 #define RT2860_LED_CMD_RADIO_ON (1 << 5)
26 #define RT2860_LED_CMD_LINK_2GHZ (1 << 6)
27 #define RT2860_LED_CMD_LINK_5GHZ (1 << 7)
29 void rt2860_led_brightness(struct rt2860_softc *sc, uint8_t brightness);
31 void rt2860_led_cmd(struct rt2860_softc *sc, uint8_t cmd);
33 #endif /* #ifndef _RT2870_LED_H_ */