diff options
author | adrian <adrian@FreeBSD.org> | 2014-08-09 09:13:10 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2014-08-09 09:13:10 +0000 |
commit | 9b2714add1a49c05905af59b1c0e04684aa0259c (patch) | |
tree | a0b45c16127a655b6c51bb031ed39bcbc0ac170f | |
parent | e357abc3e23281b44852edeb60c6d4b3896584e7 (diff) | |
download | FreeBSD-src-9b2714add1a49c05905af59b1c0e04684aa0259c.zip FreeBSD-src-9b2714add1a49c05905af59b1c0e04684aa0259c.tar.gz |
Add two new debug mark entries for chip power configuration.
-rw-r--r-- | sys/dev/ath/ath_hal/ah_decode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/ath/ath_hal/ah_decode.h b/sys/dev/ath/ath_hal/ah_decode.h index 07c4ac7..3aca975 100644 --- a/sys/dev/ath/ath_hal/ah_decode.h +++ b/sys/dev/ath/ath_hal/ah_decode.h @@ -53,6 +53,8 @@ enum { AH_MARK_ANI_POLL, /* ar*AniReset, listen time */ AH_MARK_ANI_CONTROL, /* ar*AniReset, cmd */ AH_MARK_RX_CTL, /* RX DMA control */ + AH_MARK_CHIP_POWER, /* chip power control, mode */ + AH_MARK_CHIP_POWER_DONE, /* chip power control done, status */ }; enum { @@ -61,6 +63,7 @@ enum { AH_MARK_RX_CTL_DMA_START, AH_MARK_RX_CTL_DMA_STOP, AH_MARK_RX_CTL_DMA_STOP_ERR, + AH_MARK_RX_CTL_DMA_STOP_OK, }; #endif /* _ATH_AH_DECODE_H_ */ |