diff options
author | Karsten Keil <keil@b1-systems.de> | 2009-06-02 14:57:35 +0200 |
---|---|---|
committer | Karsten Keil <keil@b1-systems.de> | 2009-06-11 19:04:48 +0200 |
commit | 8a745b9d91962991ce87a649a4dc3af3206c2c8b (patch) | |
tree | 9fc186dafbf64ce81cbb9be2f5a7379f0f1225f6 /drivers/isdn/hisax/hisax.h | |
parent | bb400801c2f40bbd9a688818323ad09abfc4e581 (diff) | |
download | blackbird-op-linux-8a745b9d91962991ce87a649a4dc3af3206c2c8b.tar.gz blackbird-op-linux-8a745b9d91962991ce87a649a4dc3af3206c2c8b.zip |
ISDN:Fix DMA alloc for hfcpci
Replace wrong code with correct DMA API functions.
Signed-off-by: Karsten Keil <keil@b1-systems.de>
Diffstat (limited to 'drivers/isdn/hisax/hisax.h')
-rw-r--r-- | drivers/isdn/hisax/hisax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hisax/hisax.h b/drivers/isdn/hisax/hisax.h index f8527046f197..0685c1946969 100644 --- a/drivers/isdn/hisax/hisax.h +++ b/drivers/isdn/hisax/hisax.h @@ -703,7 +703,7 @@ struct hfcPCI_hw { int nt_timer; struct pci_dev *dev; unsigned char *pci_io; /* start of PCI IO memory */ - void *share_start; /* shared memory for Fifos start */ + dma_addr_t dma; /* dma handle for Fifos */ void *fifos; /* FIFO memory */ int last_bfifo_cnt[2]; /* marker saving last b-fifo frame count */ struct timer_list timer; |