]> err.no Git - linux-2.6/blobdiff - drivers/media/video/cx88/cx88-cards.c
Merge branch 'for-linus' of git://git.o-hand.com/linux-rpurdie-backlight
[linux-2.6] / drivers / media / video / cx88 / cx88-cards.c
index 6204a453c11ed991add20fcd74f22d0e0386477f..a4eb6a87a761ded2d022726c117429d3ff07eee8 100644 (file)
@@ -2063,7 +2063,9 @@ struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
        atomic_inc(&core->refcount);
        core->pci_bus  = pci->bus->number;
        core->pci_slot = PCI_SLOT(pci->devfn);
-       core->pci_irqmask = 0x00fc00;
+       core->pci_irqmask = PCI_INT_RISC_RD_BERRINT | PCI_INT_RISC_WR_BERRINT |
+                           PCI_INT_BRDG_BERRINT | PCI_INT_SRC_DMA_BERRINT |
+                           PCI_INT_DST_DMA_BERRINT | PCI_INT_IPB_DMA_BERRINT;
        mutex_init(&core->lock);
 
        core->nr = nr;
@@ -2094,7 +2096,7 @@ struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
 
        memcpy(&core->board, &cx88_boards[core->boardnr], sizeof(core->board));
 
-       printk(KERN_INFO "CORE %s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n",
+       printk(KERN_INFO "%s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n",
                core->name,pci->subsystem_vendor,
                pci->subsystem_device, core->board.name,
                core->boardnr, card[core->nr] == core->boardnr ?
@@ -2105,9 +2107,8 @@ struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr)
        if (radio[core->nr] != UNSET)
                core->board.radio_type = radio[core->nr];
 
-       printk(KERN_INFO "TV tuner %d at 0x%02x, Radio tuner %d at 0x%02x\n",
-               core->board.tuner_type, core->board.tuner_addr<<1,
-               core->board.radio_type, core->board.radio_addr<<1);
+       printk(KERN_INFO "%s: TV tuner type %d, Radio tuner type %d\n",
+              core->name, core->board.tuner_type, core->board.radio_type);
 
        /* init hardware */
        cx88_reset(core);