diff options
author | Scott Long <scottl@FreeBSD.org> | 2006-05-06 06:37:15 +0000 |
---|---|---|
committer | Scott Long <scottl@FreeBSD.org> | 2006-05-06 06:37:15 +0000 |
commit | 9d150e609f8bd84939f6a5599e11d0211ae7de3a (patch) | |
tree | 8277ecb77506b48bb87394939dd5484b2001fadb | |
parent | a6c9e54730231f3afc89d260843fa7167a121913 (diff) |
Notes
-rw-r--r-- | sys/dev/rr232x/osm_bsd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/rr232x/osm_bsd.c b/sys/dev/rr232x/osm_bsd.c index 7cdb859e154e..e93b9baf9569 100644 --- a/sys/dev/rr232x/osm_bsd.c +++ b/sys/dev/rr232x/osm_bsd.c @@ -1024,7 +1024,8 @@ static void hpt_final_init(void *dummy) } if (!i) { - os_printk("no controller detected."); + if (bootverbose) + os_printk("no controller detected."); return; } @@ -1156,7 +1157,8 @@ static void hpt_final_init(void *dummy) static void hpt_init(void *dummy) { - os_printk("%s %s", driver_name_long, driver_ver); + if (bootverbose) + os_printk("%s %s", driver_name_long, driver_ver); init_config(); hpt_ich.ich_func = hpt_final_init; |