From: Gabor Juhos Date: Mon, 29 Dec 2008 20:07:42 +0000 (+0100) Subject: ath9k: use signed format to print HAL status X-Git-Tag: v2.6.30-rc1~662^2~836^2~213 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=295834fe3605fd50265399c266fe0a5ccc76edc8;p=karo-tx-linux.git ath9k: use signed format to print HAL status Signed-off-by: Gabor Juhos Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath9k/main.c b/drivers/net/wireless/ath9k/main.c index a4046a97c016..9c1fb96acc5b 100644 --- a/drivers/net/wireless/ath9k/main.c +++ b/drivers/net/wireless/ath9k/main.c @@ -1342,7 +1342,7 @@ static int ath_init(u16 devid, struct ath_softc *sc) ah = ath9k_hw_attach(devid, sc, sc->mem, &status); if (ah == NULL) { DPRINTF(sc, ATH_DBG_FATAL, - "Unable to attach hardware; HAL status %u\n", status); + "Unable to attach hardware; HAL status %d\n", status); error = -ENXIO; goto bad; }