Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 295834fe authored by Gabor Juhos's avatar Gabor Juhos Committed by John W. Linville
Browse files

ath9k: use signed format to print HAL status

parent dc822b5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}