diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-01-26 09:48:10 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:48 -0500 |
commit | 0c6666e4c43a10a224c63e3270c963d97f7e8cc8 (patch) | |
tree | ea0635c5e25b6460517ef546ab5543d070f10d7c /drivers | |
parent | f677d7702d48b7b3dfcce3b2c0db601dbee0aa24 (diff) |
ath9k: fix debug print on regd
With debugging enabled and with ATH_DBG_REGULATORY
selected we wouldn't get the full print out of one line,
reason is we used "," instead of nothing to separate two
lines.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath9k/regd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/regd.c b/drivers/net/wireless/ath9k/regd.c index 90f0c982430c..ec88f78743e9 100644 --- a/drivers/net/wireless/ath9k/regd.c +++ b/drivers/net/wireless/ath9k/regd.c | |||
@@ -447,7 +447,7 @@ int ath9k_regd_init(struct ath_hal *ah) | |||
447 | } | 447 | } |
448 | 448 | ||
449 | DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY, | 449 | DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY, |
450 | "Country alpha2 being used: %c%c\n", | 450 | "Country alpha2 being used: %c%c\n" |
451 | "Regpair detected: 0x%0x\n", | 451 | "Regpair detected: 0x%0x\n", |
452 | ah->alpha2[0], ah->alpha2[1], | 452 | ah->alpha2[0], ah->alpha2[1], |
453 | ah->regpair->regDmnEnum); | 453 | ah->regpair->regDmnEnum); |