Changeset 213810b3 in rtems


Ignore:
Timestamp:
08/22/05 13:31:30 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
9bd1f4e
Parents:
cee7620
Message:

2005-08-18 Karel Gardas <kgardas@…>

  • libchip/network/if_fxp.c, libchip/network/if_dc.c, libchip/network/dec21140.c: Remove initialization of PCI bus.
Location:
c/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/ChangeLog

    rcee7620 r213810b3  
     12005-08-18  Karel Gardas  <kgardas@objectsecurity.com>
     2
     3        * libchip/network/if_fxp.c, libchip/network/if_dc.c,
     4        libchip/network/dec21140.c: Remove initialization of PCI bus.
     5
    162005-08-15      Ralf Corsepius <ralf.corsepius@rtems.org>
    27
  • c/src/libchip/network/dec21140.c

    rcee7620 r213810b3  
    10281028   }
    10291029
    1030    if (pci_initialize() != PCIB_ERR_SUCCESS)
    1031       rtems_panic("dec2114x: Unable to initialize PCI");
    1032 
    10331030   /*
    10341031    * Find the board
  • c/src/libchip/network/if_dc.c

    rcee7620 r213810b3  
    19191919         * First, find a DEC board
    19201920         */
    1921         if (pci_initialize() == PCIB_ERR_NOTPRESENT) {
    1922                 rtems_panic("PCI BIOS not found !!");
    1923         }
    1924 
    19251921        sc = &dc_softc_devs[unitNumber - 1];
    19261922        ifp = &sc->arpcom.ac_if;
  • c/src/libchip/network/if_fxp.c

    rcee7620 r213810b3  
    446446#endif
    447447        s = splimp();
    448 
    449         /*
    450          * init PCI Bios interface...
    451          */
    452         i = pci_initialize();
    453         DBGLVL_PRINTK(2,"fxp_attach: pcib_init returned %d\n",i);
    454         if (i != PCIB_ERR_SUCCESS) {
    455           device_printf(dev, "could not initialize pci bios interface\n");
    456           return 0;
    457         }
    458448
    459449        /*
Note: See TracChangeset for help on using the changeset viewer.