diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-19 21:45:45 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-19 21:45:45 +0000 |
commit | 9d30a41e5fa0ca8771f67c7e082f17c689bb479e (patch) | |
tree | f19292a1ecdd4e0ce6ce622b639ad01c5e62e01d /sys/arch/macppc/dev | |
parent | 732f715156400a5da36c4a38d96374bd5d6b378d (diff) |
adb devices print a string identifying the device.
Diffstat (limited to 'sys/arch/macppc/dev')
-rw-r--r-- | sys/arch/macppc/dev/pi2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/pi2c.c b/sys/arch/macppc/dev/pi2c.c index c76f5caced9..a8a5f94912e 100644 --- a/sys/arch/macppc/dev/pi2c.c +++ b/sys/arch/macppc/dev/pi2c.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pi2c.c,v 1.2 2005/11/19 02:18:00 pedro Exp $ */ +/* $OpenBSD: pi2c.c,v 1.3 2005/11/19 21:45:44 brad Exp $ */ /* * Copyright (c) 2005 Mark Kettenis @@ -65,7 +65,7 @@ pi2c_attach(struct device *parent, struct device *self, void *aux) struct confargs *ca = aux; struct maci2cbus_attach_args iba; - printf("\n"); + printf("i2c controller\n"); lockinit(&sc->sc_buslock, PZERO, sc->sc_dev.dv_xname, 0, 0); |