Changeset 3605c4e in rtems


Ignore:
Timestamp:
08/05/03 19:54:27 (21 years ago)
Author:
Jennifer Averett <Jennifer.Averett@…>
Children:
ca15cda0
Parents:
10ec9ae
Message:

2003-08-05 Till Strauman <strauman@…>

PR 437/bsps

  • irq/irc.c: calls to bspIo/printk must not use '%i' format which is apparently not supported
  • pci/pci.c: calls to bspIo/printk must not use '%i' format which is apparently not supported
Location:
c/src/lib/libbsp/powerpc/shared
Files:
3 edited

Legend:

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

    r10ec9ae r3605c4e  
     12003-08-05      Till Strauman <strauman@slac.stanford.edu>
     2
     3        PR 437/bsps
     4        * irq/irc.c: calls to bspIo/printk must not use '%i' format which is
     5        apparently not supported
     6        * pci/pci.c: calls to bspIo/printk must not use '%i' format which is
     7        apparently not supported
     8
    192003-07-18      Till Straumann <strauman@slac.stanford.edu>
    210
  • c/src/lib/libbsp/powerpc/shared/irq/irq.c

    r10ec9ae r3605c4e  
    129129 
    130130    if (!isValidInterrupt(irq->name)) {
    131       printk("Invalid interrupt vector %i\n",irq->name);
     131      printk("Invalid interrupt vector %d\n",irq->name);
    132132      return 0;
    133133    }
    134134    if ( (int)rtems_hdl_tbl[irq->name].next_handler  == -1 ) {
    135       printk("IRQ vector %i already connected to an unshared handler\n",irq->name);
     135      printk("IRQ vector %d already connected to an unshared handler\n",irq->name);
    136136      return 0;
    137137    }
     
    192192 
    193193    if (!isValidInterrupt(irq->name)) {
    194       printk("Invalid interrupt vector %i\n",irq->name);
     194      printk("Invalid interrupt vector %d\n",irq->name);
    195195      return 0;
    196196    }
     
    203203     */
    204204    if (rtems_hdl_tbl[irq->name].hdl != default_rtems_entry.hdl) {
    205       printk("IRQ vector %i already connected\n",irq->name);
     205      printk("IRQ vector %d already connected\n",irq->name);
    206206      return 0;
    207207    }
  • c/src/lib/libbsp/powerpc/shared/pci/pci.c

    r10ec9ae r3605c4e  
    2222#include <libcpu/io.h>
    2323#include <bsp/pci.h>
     24#include <rtems/bspIo.h>
    2425
    2526/* allow for overriding these definitions */
     
    389390                     if( int_name == -1 )
    390391                     {
    391                         printk("pci : Unable to resolve device %d:%d w/ swizzled int pin %i to an interrupt_line.\n", pbus, pslot, int_pin );
     392                        printk("pci : Unable to resolve device %d:%d w/ swizzled int pin %d to an interrupt_line.\n", pbus, pslot, int_pin );
    392393                     }
    393394                     else
     
    459460                           if( int_name == -1 )
    460461                           {
    461                               printk("pci : Unable to resolve device %d:%d w/ swizzled int pin %i to an interrupt_line.\n", pbus, pslot, int_pin );
     462                              printk("pci : Unable to resolve device %d:%d w/ swizzled int pin %d to an interrupt_line.\n", pbus, pslot, int_pin );
    462463                           }
    463464                           else
     
    500501                     else
    501502                     {
    502                         printk("pci : No bridge from bus %i towards root found\n", tbus );
     503                        printk("pci : No bridge from bus %d towards root found\n", tbus );
    503504                        goto donesearch;
    504505                     }
Note: See TracChangeset for help on using the changeset viewer.