Only print the driver name and version if bootverbose is set.

This commit is contained in:
Scott Long 2006-05-02 03:46:59 +00:00
parent cb24e15186
commit b07d272da4

View File

@ -1156,7 +1156,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;