diff options
| author | pgoyette <pgoyette@NetBSD.org> | 2018-02-26 08:34:47 +0000 |
|---|---|---|
| committer | pgoyette <pgoyette@NetBSD.org> | 2018-02-26 08:34:47 +0000 |
| commit | ce93aea82e4d609a5069718a9e217f33a2d4304c (patch) | |
| tree | 15b15589c380e436f182d2f5a4895b765177fbb5 /sys/dev | |
| parent | dccfd3e7e68f2a54e2080fb67b20dba7f4688e78 (diff) | |
Better device identification during configuration/attach
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/imcsmb/imcsmb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/imcsmb/imcsmb.c b/sys/dev/imcsmb/imcsmb.c index ab56781c54b..b2edc384503 100644 --- a/sys/dev/imcsmb/imcsmb.c +++ b/sys/dev/imcsmb/imcsmb.c @@ -115,7 +115,8 @@ imcsmb_attach(device_t parent, device_t self, void *aux) struct imcsmb_softc *sc = device_private(self); struct imc_attach_args *imca = aux; - aprint_normal_dev(self, ": SMBus controller\n"); + aprint_naive("\n"); + aprint_normal("SMBus controller\n"); /* Initialize private state */ sc->sc_dev = self; |
