diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-05-08 20:41:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-05-08 20:41:01 +0000 |
commit | 9c481ed6023b000684ffe90f82d56255abc29f6d (patch) | |
tree | 7ca0aecd44283b1fe177325eba97d1d2d799a92d /sys/dev/pci/hifn7751.c | |
parent | 9fdc8e8578de9c9baf7deeb2b2d36d7da5abb87a (diff) |
simplify prints
Diffstat (limited to 'sys/dev/pci/hifn7751.c')
-rw-r--r-- | sys/dev/pci/hifn7751.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c index 273542dec31..17bfbd38505 100644 --- a/sys/dev/pci/hifn7751.c +++ b/sys/dev/pci/hifn7751.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hifn7751.c,v 1.57 2001/04/06 16:27:46 jason Exp $ */ +/* $OpenBSD: hifn7751.c,v 1.58 2001/05/08 20:41:00 deraadt Exp $ */ /* * Invertex AEON / Hi/fn 7751 driver @@ -421,7 +421,7 @@ hifn_enable_crypto(sc, pciid) if (offtbl == NULL) { #ifdef HIFN_DEBUG - printf("%s: Unknown card!\n", sc->sc_dv.dv_xname); + printf(": Unknown card!\n"); #endif return (1); } @@ -443,8 +443,7 @@ hifn_enable_crypto(sc, pciid) */ if (encl == HIFN_PUSTAT_ENA_1 || encl == HIFN_PUSTAT_ENA_2) { #ifdef HIFN_DEBUG - printf("%s: Strong Crypto already enabled!\n", - sc->sc_dv.dv_xname); + printf(": Strong Crypto already enabled!\n"); #endif WRITE_REG_0(sc, HIFN_0_PUCNFG, ramcfg); WRITE_REG_1(sc, HIFN_1_DMA_CNFG, dmacfg); @@ -453,7 +452,7 @@ hifn_enable_crypto(sc, pciid) if (encl != 0 && encl != HIFN_PUSTAT_ENA_0) { #ifdef HIFN_DEBUG - printf("%s: Unknown encryption level\n", sc->sc_dv.dv_xname); + printf(": Unknown encryption level\n"); #endif return 1; } @@ -478,9 +477,9 @@ hifn_enable_crypto(sc, pciid) #ifdef HIFN_DEBUG if (encl != HIFN_PUSTAT_ENA_1 && encl != HIFN_PUSTAT_ENA_2) - printf("Encryption engine is permanently locked until next system reset."); + printf(": engine is permanently locked until next system reset"); else - printf("Encryption engine enabled successfully!"); + printf(": engine enabled successfully!"); #endif WRITE_REG_0(sc, HIFN_0_PUCNFG, ramcfg); |