diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-11-22 15:23:17 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-11-22 15:23:17 +0000 |
commit | 316578bcc36452acee5f116b547d968c9b7b64bd (patch) | |
tree | d481b58397a6e070ed2da07cd895526a83cb83eb /arch/mips/galileo-boards/ev96100 | |
parent | ecc76258e53e83702a973a2503513122b04494cd (diff) |
Kill printk's, no place for debug junk.
Diffstat (limited to 'arch/mips/galileo-boards/ev96100')
-rw-r--r-- | arch/mips/galileo-boards/ev96100/pci-dma.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/galileo-boards/ev96100/pci-dma.c b/arch/mips/galileo-boards/ev96100/pci-dma.c index b66cfbff4..b338b286a 100644 --- a/arch/mips/galileo-boards/ev96100/pci-dma.c +++ b/arch/mips/galileo-boards/ev96100/pci-dma.c @@ -28,7 +28,6 @@ void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size, void *ret; int gfp = GFP_ATOMIC; - printk("pci_alloc_consistent\n"); if (hwdev == NULL || hwdev->dma_mask != 0xffffffff) gfp |= GFP_DMA; ret = (void *)__get_free_pages(gfp, get_order(size)); @@ -38,7 +37,6 @@ void *pci_alloc_consistent(struct pci_dev *hwdev, size_t size, *dma_handle = virt_to_bus(ret); } ret = (void*) ((unsigned long)ret | 0xA0000000); - printk("ret %x dma_handle %x\n", ret, *dma_handle); return ret; } |