Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Mar 1999 06:25:12 -0800 (PST)
From:      colle@krtkg1.rug.ac.be
To:        freebsd-gnats-submit@freebsd.org
Subject:   misc/10544: pccardd is not reporting initialized drivers properly
Message-ID:  <19990311142512.21BC3151F9@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         10544
>Category:       misc
>Synopsis:       pccardd is not reporting initialized drivers properly
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Mar 11 06:30:00 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Christophe Colle
>Release:        3.1-RELEASE
>Organization:
>Environment:
3.1-RELEASE FreeBSD 3.1-RELEASE #6 ... i386
Toshiba Sattelite 210CT
>Description:
When starting the kernel a line is printed with the following content:
pcic: controller irq 5
Initializing PC-Card drivers: ed

Only the ed is reported instead of ed ep fe sio ...


>How-To-Repeat:
just reboot   ;-)
>Fix:
pccard/pccard.c: in the function pccard_configure
repolace the lines 

while ((drv = *driver++))
    printf(" %s", drv->name);

with

for (drv=*driver; drv; drv=drv->next) 
   printf(" %s", drvname);




>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990311142512.21BC3151F9>