• 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 defs:boards

72  * The ISA boards do window flipping into the same spaces so its only sane with
81 static struct board_info boards[MAXBOARDS];
793 if (boardnum >= num_cards || boards[boardnum].status == DISABLED) {
825 /* Save boards current modem status */
891 bd = &boards[crd];
972 memcpy(&boards, &static_boards,
991 * boards array is correct. This could be wrong if the card in question
992 * is PCI (And therefore has no ports entry in the boards structure.)
1050 bd = &boards[crd];
1108 * transmit and receive windowing operations. These boards are
1157 /* Start up the poller to check for events on all enabled boards */
1187 bd = &boards[crd];
1222 card_ptr[crd] = card_ptr[crd-1] + boards[crd-1].numports;
1270 ch->board = &boards[crd];
1275 * Since some of the boards use different bitmaps for
1306 if (boards[crd].altpin) {
1428 bd = &boards[crd];
1436 * subroutine. It is being kept because future boards may need
1437 * this as well as some legacy boards.
1477 bd = &boards[crd];
1938 di.status = boards[brd].status;
1939 di.type = boards[brd].type ;
1940 di.numports = boards[brd].numports ;
1942 di.port = (unsigned char *)boards[brd].port ;
1943 di.membase = (unsigned char *)boards[brd].membase ;
2648 /* Copies our local copy of board into boards */
2649 memcpy((void *)&boards[num_cards], (void *)&board, sizeof(board));
2708 boards[board_idx].status = ENABLED;
2709 boards[board_idx].type = epca_info_tbl[info_idx].board_type;
2710 boards[board_idx].numports = 0x0;
2711 boards[board_idx].port = addr + PCI_IO_OFFSET;
2712 boards[board_idx].membase = addr;
2720 boards[board_idx].re_map_port = ioremap_nocache(addr + PCI_IO_OFFSET,
2722 if (!boards[board_idx].re_map_port) {
2734 boards[board_idx].re_map_membase = ioremap_nocache(addr, 0x200000);
2735 if (!boards[board_idx].re_map_membase) {
2755 iounmap(boards[board_idx].re_map_port);