Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 388 → Rev 389

/shark/trunk/oslib/libc/ioformat/sprintf.c
214,6 → 214,11
parsing = 1;
}
break;
case '#': if (parsing != 1 && parsing != 2) {
*buf++ = '#';
scanned++;
}
break;
default : parsing = 0;
break;
}
/shark/trunk/drivers/net/eth.c
20,11 → 20,11
 
/**
------------
CVS : $Id: eth.c,v 1.5 2003-11-15 12:53:47 giacomo Exp $
CVS : $Id: eth.c,v 1.6 2004-01-08 20:38:55 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.5 $
Last update: $Date: 2003-11-15 12:53:47 $
Revision: $Revision: 1.6 $
Last update: $Date: 2004-01-08 20:38:55 $
------------
**/
 
394,7 → 394,7
int linux_found = 0;
 
if (!ethIsInstalled) {
printk(KERN_INFO "Hartik/Shark Net lib");
printk(KERN_INFO "Shark Net lib\n");
/* Scan the devices connected to the PCI bus */
cardtype = NONE;
 
419,7 → 419,6
task_activate(nettask_pid);
if (pci_init() == 1) {
linuxpci_init();
pci_show();
#ifdef DEBUG_ETH
printk(KERN_DEBUG "LF %d\n", linux_found);
#endif