From: Nick Kossifidis <mick@madwifi.org>
To: ath5k-devel@lists.ath5k.org, linux-wireless@vger.kernel.org
Cc: linville@tuxdriver.com, jirislaby@gmail.com, mcgrof@gmail.com
Subject: [PATCH 7/7] ath5k: Warn on partially supported chips
Date: Sun, 28 Oct 2007 02:44:18 +0300 [thread overview]
Message-ID: <20071027234418.GG5973@localhost.domain.invalid> (raw)
*Warn on partially supported chips (eg. 5414/5424)
These chips need work on PHY part, recently Reyk posted
a workaround so that they can work on 2GHz but i believe
that the problem is related to PHY initialization. Plz
we need help with these...
I did some tests on a 5414 at 5GHz and it seemed to work
but i didn't test it at 2GHz.
I'll try to find one of these and play with.
Changes-licensed-under: ISC
Signed-Off-by: Nick Kossifidis <mickflemm@gmail.com>
---
diff --git a/drivers/net/wireless/ath5k/hw.c b/drivers/net/wireless/ath5k/hw.c
index c95ae4b..ac105c6 100644
--- a/drivers/net/wireless/ath5k/hw.c
+++ b/drivers/net/wireless/ath5k/hw.c
@@ -285,6 +285,11 @@ struct ath5k_hw *ath5k_hw_attach(u16 device, u8 mac_version, void *sc,
goto err_free;
}
+ /* Warn for partially supported chips (unsupported phy etc) */
+ if(srev >= AR5K_SREV_VER_AR2424){
+ printk(KERN_DEBUG "ath5k: Device partially supported.\n");
+ }
+
/* Identify single chip solutions */
if((srev <= AR5K_SREV_VER_AR5414) &&
(srev >= AR5K_SREV_VER_AR2424)) {
reply other threads:[~2007-10-27 23:44 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071027234418.GG5973@localhost.domain.invalid \
--to=mick@madwifi.org \
--cc=ath5k-devel@lists.ath5k.org \
--cc=jirislaby@gmail.com \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=mcgrof@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.