aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/xen/console
diff options
context:
space:
mode:
authorKip Macy <kmacy@FreeBSD.org>2008-08-15 04:00:44 +0000
committerKip Macy <kmacy@FreeBSD.org>2008-08-15 04:00:44 +0000
commitf0c468df7108c768ac3a031fdadf58bf268acfeb (patch)
tree0721ec70e83fbe8cb95ceccec819f561a2f3958b /sys/dev/xen/console
parentad8ea5a8b2708ede8ff849eeb033a45f87b75af2 (diff)
Notes
Diffstat (limited to 'sys/dev/xen/console')
-rw-r--r--sys/dev/xen/console/console.c3
-rw-r--r--sys/dev/xen/console/xencons_ring.c1
2 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/xen/console/console.c b/sys/dev/xen/console/console.c
index dc9fe6fe3762..252878d4d6dc 100644
--- a/sys/dev/xen/console/console.c
+++ b/sys/dev/xen/console/console.c
@@ -276,7 +276,6 @@ xc_attach(device_t dev)
NULL, SHUTDOWN_PRI_DEFAULT)) == NULL)
printf("xencons: shutdown event registration failed!\n");
- TRACE_EXIT;
return (0);
}
@@ -368,7 +367,6 @@ xcopen(struct cdev *dev, int flag, int mode, struct thread *td)
if (sc == NULL)
return (ENXIO);
- TRACE_ENTER;
tp = dev->si_tty;
s = spltty();
if (!ISTTYOPEN(tp)) {
@@ -390,7 +388,6 @@ xcopen(struct cdev *dev, int flag, int mode, struct thread *td)
xen_console_up = 1;
error = (*linesw[tp->t_line]->l_open)(dev, tp);
- TRACE_EXIT;
return error;
}
diff --git a/sys/dev/xen/console/xencons_ring.c b/sys/dev/xen/console/xencons_ring.c
index c9b60ace5430..3d2323765c8e 100644
--- a/sys/dev/xen/console/xencons_ring.c
+++ b/sys/dev/xen/console/xencons_ring.c
@@ -119,7 +119,6 @@ xencons_ring_init(void)
"xencons", xencons_handle_input, NULL,
INTR_TYPE_MISC | INTR_MPSAFE, NULL);
if (err) {
- XENPRINTF("XEN console request irq failed %i\n", err);
return err;
}