From 69a4cb8cbc0eb97e97909342c4bf845136ce4251 Mon Sep 17 00:00:00 2001 From: Li-Ta Lo Date: Fri, 30 Nov 2001 09:50:07 +0000 Subject: [PATCH] fixed few typo about printk --- src/etherboot/rarp.c | 1 + src/etherboot/sis900.c | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/etherboot/rarp.c b/src/etherboot/rarp.c index 919c9b0f9f..6a52542b6d 100644 --- a/src/etherboot/rarp.c +++ b/src/etherboot/rarp.c @@ -1,3 +1,4 @@ +#include #include "etherboot.h" #include "nic.h" diff --git a/src/etherboot/sis900.c b/src/etherboot/sis900.c index 8159561c63..f7823c9692 100644 --- a/src/etherboot/sis900.c +++ b/src/etherboot/sis900.c @@ -39,6 +39,7 @@ /* Includes */ #include +#include #include "etherboot.h" #include "nic.h" #include "pci.h" @@ -158,7 +159,7 @@ static int sis900_get_mac_addr(struct pci_device * pci_dev , struct nic *nic) /* check to see if we have sane EEPROM */ signature = (u16) sis900_read_eeprom( EEPROMSignature); if (signature == 0xffff || signature == 0x0000) { - printk ("sis900_probe: Error EERPOM read %x\n", signature); + printk_info ("sis900_probe: Error EERPOM read %x\n", signature); return 0; } @@ -284,7 +285,7 @@ struct nic *sis900_probe(struct nic *nic, unsigned short *io_addrs, struct pci_d if (ret == 0) { - printk ("sis900_probe: Error MAC address not found\n"); + printk_info ("sis900_probe: Error MAC address not found\n"); return NULL; }