diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-29 14:53:46 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-29 14:53:46 +0000 |
commit | 039c606902e5831e98e228b27e52f9e1c4941078 (patch) | |
tree | e91df5bea6f2fd12a409ad21335ea4cb871580ad /sys/arch | |
parent | 447d3d43c9071d76e2b1cd03b4836e63f81517b1 (diff) |
These printfs appear unnecessary now that the cache is disabled.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/landisk/stand/boot/devs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/landisk/stand/boot/devs.c b/sys/arch/landisk/stand/boot/devs.c index 4534cbf80a7..19f16a96fc8 100644 --- a/sys/arch/landisk/stand/boot/devs.c +++ b/sys/arch/landisk/stand/boot/devs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: devs.c,v 1.4 2006/10/29 14:47:59 drahn Exp $ */ +/* $OpenBSD: devs.c,v 1.5 2006/10/29 14:53:45 drahn Exp $ */ /* * Copyright (c) 2006 Michael Shalayeff @@ -78,11 +78,6 @@ run_loadfile(u_long *marks, int howto) cache_flush(); cache_disable(); - printf("entry point at 0x%x\n", (int)entry); - printf("start at 0x%x\n", (int)marks[MARK_START]); - printf("NSYMS 0x%x\n", (int)marks[MARK_NSYM]); - printf("SYM at 0x%x\n", (int)marks[MARK_SYM]); - printf("END at 0x%x\n", (int)marks[MARK_END]); (*(void (*)(int,int,int))entry)(howto, marks[MARK_END], 0); } |