Changeset 3120019 in rtems


Ignore:
Timestamp:
03/04/05 21:48:49 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
9c25cad
Parents:
62c3d857
Message:

2005-03-04 Joel Sherrill <joel@…>

  • pci/pci.c, pci/pcifinddevice.c, startup/bspstart.c: Make PCI initialize function part of the unified PCI API as pci_initialize().
Location:
c/src/lib/libbsp/powerpc/shared
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/shared/ChangeLog

    r62c3d857 r3120019  
     12005-03-04      Joel Sherrill <joel@OARcorp.com>
     2
     3        * pci/pci.c, pci/pcifinddevice.c, startup/bspstart.c: Make PCI
     4        initialize function part of the unified PCI API as pci_initialize().
     5
    162005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
    27
  • c/src/lib/libbsp/powerpc/shared/pci/pci.c

    r62c3d857 r3120019  
    522522 * This routine determines the maximum bus number in the system
    523523 */
    524 void InitializePCI()
     524void pci_initialize()
    525525{
    526526  extern void detect_host_bridge();
  • c/src/lib/libbsp/powerpc/shared/pci/pcifinddevice.c

    r62c3d857 r3120019  
    1515
    1616int
    17 BSP_pciFindDevice( unsigned short vendorid, unsigned short deviceid,
     17pci_find_by_devid( unsigned short vendorid, unsigned short deviceid,
    1818                   int instance, int *pbus, int *pdev, int *pfun )
    1919{
     
    3838                                continue;
    3939#ifdef PCI_DEBUG
    40                         printk("BSP_pciFindDevice: found 0x%08x at %d/%d/%d\n",d,bus,dev,fun);
     40                        printk("pci_find_by_devid: found 0x%08x at %d/%d/%d\n",d,bus,dev,fun);
    4141#endif
    4242                        (void) pci_read_config_word(bus,dev,fun,PCI_VENDOR_ID,&s);
  • c/src/lib/libbsp/powerpc/shared/startup/bspstart.c

    r62c3d857 r3120019  
    400400  printk("Going to start PCI buses scanning and initialization\n");
    401401#endif
    402   InitializePCI();
     402  pci_initialize();
    403403
    404404  {
Note: See TracChangeset for help on using the changeset viewer.