diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-02-04 13:27:50 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-13 00:36:03 +0400 |
commit | 482b30b653e2be8aa1bf70b7aaac56ff0aeb070c (patch) | |
tree | 7e5eed513e020b08f0653d1f226a1fba7a820afc /drivers/net/wireless/ath/ath9k/htc_hst.h | |
parent | c8ec0f5c9bc4ef3263d5c77e6fd0489a89ed9941 (diff) | |
download | linux-482b30b653e2be8aa1bf70b7aaac56ff0aeb070c.tar.xz |
ath9k_htc: catch fw panic pattern
... and print what we get.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/htc_hst.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc_hst.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc_hst.h b/drivers/net/wireless/ath/ath9k/htc_hst.h index e1ffbb6bd636..06474ccc7696 100644 --- a/drivers/net/wireless/ath/ath9k/htc_hst.h +++ b/drivers/net/wireless/ath/ath9k/htc_hst.h @@ -77,6 +77,18 @@ struct htc_config_pipe_msg { u8 credits; } __packed; +struct htc_panic_bad_vaddr { + __be32 pattern; + __be32 exccause; + __be32 pc; + __be32 badvaddr; +} __packed; + +struct htc_panic_bad_epid { + __be32 pattern; + __be32 epid; +} __packed; + struct htc_ep_callbacks { void *priv; void (*tx) (void *, struct sk_buff *, enum htc_endpoint_id, bool txok); |