| Summary: | Update aironet driver to correct signal strengt units, and add ``quality'' information. | ||
|---|---|---|---|
| Product: | Base System | Reporter: | Douglas S. J. De Couto <decouto> |
| Component: | kern | Assignee: | Doug Ambrisko <ambrisko> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | 4.4-RELEASE | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
Douglas S. J. De Couto
2001-12-15 21:10:00 UTC
aargh, there was a formatting error in the ancontrol.c patch, the
patch i submitted had:
+
printf("%3u %3u -%3u\n", i,
+
(unsigned int) entry->an_rss_pct,
+
(unsigned int) entry->an_rss_dbm);
it should be:
+
printf("%3u %3u %4u\n", i,
+
(unsigned int) entry->an_rss_pct,
+
- (int) entry->an_rss_dbm);
d
--
Douglas S. J. De Couto decouto@lcs.mit.edu
Responsible Changed From-To: freebsd-bugs->brooks Mr. Davis, looks like you took over from Bill as the Aironet maintainer? :-) Responsible Changed From-To: brooks->ambrisko Doug has been doing the real work on the an driver. I've just been slackigng on commiting his work so I'll pass the buck. State Changed From-To: open->closed This has been put into -current now. It required some more work and I also enhanced it some more. |