• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/

Lines Matching refs:board

411 	/*	find next active board	*/
808 /* Activate and thus setup board are protected from races against shutdown
848 unsigned int board;
853 board = BOARD(line);
854 card = &isi_card[board];
860 if (line > ((board * 16) + card->port_count - 1))
892 pr_debug("%s: bad board(0x%lx) count %d.\n",
896 /* last port was closed, shutdown that board too */
1315 struct isi_board *board = pci_get_drvdata(pdev);
1316 unsigned long base = board->base;
1357 board->port_count = (portcount == 4) ? 4 : 8;
1358 board->shift_count = 12;
1362 board->port_count = 16;
1363 board->shift_count = 11;
1376 struct isi_board *board = pci_get_drvdata(pdev);
1378 unsigned long base = board->base;
1537 board->status |= FIRMWARE_LOADED;
1556 struct isi_board *board = NULL;
1572 board = &isi_card[index];
1581 board->index = index;
1582 board->base = pci_resource_start(pdev, 3);
1583 board->irq = pdev->irq;
1586 pci_set_drvdata(pdev, board);
1591 "will be disabled.\n", board->base, board->base + 15,
1597 retval = request_irq(board->irq, isicom_interrupt,
1598 IRQF_SHARED | IRQF_DISABLED, ISICOM_NAME, board);
1601 "Card%d will be disabled.\n", board->irq, index + 1);
1613 for (index = 0; index < board->port_count; index++)
1614 tty_register_device(isicom_normal, board->index * 16 + index,
1620 free_irq(board->irq, board);
1624 board->base = 0;
1634 struct isi_board *board = pci_get_drvdata(pdev);
1637 for (i = 0; i < board->port_count; i++)
1638 tty_unregister_device(isicom_normal, board->index * 16 + i);
1640 free_irq(board->irq, board);
1642 board->base = 0;