Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 438 → Rev 439

/shark/trunk/config/libdep.mk
178,6 → 178,12
LIB_DEP += $(LIB_PATH)/libcomp.a
endif
 
# comp
ifeq ($(LIB_PATH)/libcomp26.a,$(wildcard $(LIB_PATH)/libcomp26.a))
LINK_LIB += -lcomp26
LIB_DEP += $(LIB_PATH)/libcomp26.a
endif
 
# mpeg
ifeq ($(LIB_PATH)/libmpeg.a,$(wildcard $(LIB_PATH)/libmpeg.a))
LINK_LIB += -lmpeg
/shark/trunk/drivers/newpci/pci2.h
4,7 → 4,7
* (c) 1999 Martin Mares <mj@ucw.cz>
*/
 
#undef DEBUG
#define DEBUG
 
#ifdef DEBUG
#define DBG(x...) printk(x)
/shark/trunk/drivers/newpci/pcbios.c
415,7 → 415,7
 
if (!pci_bios_present)
return NULL;
page = __get_free_page(GFP_KERNEL);
page = (long)kmalloc(PAGE_SIZE,GFP_KERNEL);
if (!page)
return NULL;
opt.table = (struct irq_info *) page;
451,7 → 451,7
printk(KERN_INFO "PCI: Using BIOS Interrupt Routing Table\n");
}
}
free_page(page);
kfree((void *)page);
return rt;
}