pci.c (9b4fab9ef6b1bfdf519bf99015dc2751d1c3a0e3) pci.c (d39d4a6e6412f88225d1b78c8a797ab82daac250)
1/*
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000, BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 1470 unchanged lines hidden (view full) ---

1479
1480 none_count = 0;
1481 /* get the head of the device queue */
1482 devlist_head = &pci_devq;
1483
1484 /*
1485 * Go through the list of devices and print out devices
1486 */
1/*
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000, BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 1470 unchanged lines hidden (view full) ---

1479
1480 none_count = 0;
1481 /* get the head of the device queue */
1482 devlist_head = &pci_devq;
1483
1484 /*
1485 * Go through the list of devices and print out devices
1486 */
1487 db_setup_paging(db_simple_pager, &quit, DB_LINES_PER_PAGE);
1487 db_setup_paging(db_simple_pager, &quit, db_lines_per_page);
1488 for (error = 0, i = 0, quit = 0,
1489 dinfo = STAILQ_FIRST(devlist_head);
1490 (dinfo != NULL) && (error == 0) && (i < pci_numdevs) && !quit;
1491 dinfo = STAILQ_NEXT(dinfo, pci_links), i++) {
1492
1493 /* Populate pd_name and pd_unit */
1494 name = NULL;
1495 if (dinfo->cfg.dev)

--- 422 unchanged lines hidden ---
1488 for (error = 0, i = 0, quit = 0,
1489 dinfo = STAILQ_FIRST(devlist_head);
1490 (dinfo != NULL) && (error == 0) && (i < pci_numdevs) && !quit;
1491 dinfo = STAILQ_NEXT(dinfo, pci_links), i++) {
1492
1493 /* Populate pd_name and pd_unit */
1494 name = NULL;
1495 if (dinfo->cfg.dev)

--- 422 unchanged lines hidden ---