Reviewed by:

Submitted by:
Put the printf("can't map 3c507 ram.. into an ifdef DEBUG. This will
confuse only normal users and the ie0 found/not found is sufficient.
This commit is contained in:
Andreas Schulz 1994-09-02 23:23:57 +00:00
parent 3d76654d68
commit 7dfcb69ffc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2467
2 changed files with 6 additions and 2 deletions

View File

@ -43,7 +43,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_ie.c,v 1.11 1994/08/25 20:16:59 wollman Exp $
* $Id: if_ie.c,v 1.12 1994/09/02 22:13:31 ats Exp $
*/
/*
@ -407,7 +407,9 @@ static int el_probe(dvp)
c = inb(PORT + IE507_MADDR);
if(c & 0x20) {
#ifdef DEBUG
printf("ie%d: can't map 3C507 RAM in high memory\n", unit);
#endif
return 0;
}

View File

@ -43,7 +43,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_ie.c,v 1.11 1994/08/25 20:16:59 wollman Exp $
* $Id: if_ie.c,v 1.12 1994/09/02 22:13:31 ats Exp $
*/
/*
@ -407,7 +407,9 @@ static int el_probe(dvp)
c = inb(PORT + IE507_MADDR);
if(c & 0x20) {
#ifdef DEBUG
printf("ie%d: can't map 3C507 RAM in high memory\n", unit);
#endif
return 0;
}