Displaying 1 result from an estimated 1 matches for "dev_hfcpci".
2007 Oct 03
4
Problem with mISDN and HFC-Cards in Asterisk-DomU
...f you look into the mISDN source-code you will find the following snippet of
code in /drivers/isdn/hardware/mISDN/hfc_pci.c, which produces the above
error:
/* Allocate memory for FIFOS */
/* the memory needs to be on a 32k boundary within the first 4G */
pci_set_dma_mask(dev_hfcpci, 0xFFFF8000);
buffer = pci_alloc_consistent(dev_hfcpci, 0x8000, &hc->hw.dmahandle);
/* We silently assume the address is okay if nonzero */
if(!buffer) {
printk(KERN_WARNING "HFC-PCI: Error allocating memory for
FIFO!\n");
re...