Changeset 3605c4e in rtems
- Timestamp:
- 08/05/03 19:54:27 (20 years ago)
- Children:
- ca15cda0
- Parents:
- 10ec9ae
- Location:
- c/src/lib/libbsp/powerpc/shared
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/shared/ChangeLog
r10ec9ae r3605c4e 1 2003-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 1 9 2003-07-18 Till Straumann <strauman@slac.stanford.edu> 2 10 -
c/src/lib/libbsp/powerpc/shared/irq/irq.c
r10ec9ae r3605c4e 129 129 130 130 if (!isValidInterrupt(irq->name)) { 131 printk("Invalid interrupt vector % i\n",irq->name);131 printk("Invalid interrupt vector %d\n",irq->name); 132 132 return 0; 133 133 } 134 134 if ( (int)rtems_hdl_tbl[irq->name].next_handler == -1 ) { 135 printk("IRQ vector % ialready connected to an unshared handler\n",irq->name);135 printk("IRQ vector %d already connected to an unshared handler\n",irq->name); 136 136 return 0; 137 137 } … … 192 192 193 193 if (!isValidInterrupt(irq->name)) { 194 printk("Invalid interrupt vector % i\n",irq->name);194 printk("Invalid interrupt vector %d\n",irq->name); 195 195 return 0; 196 196 } … … 203 203 */ 204 204 if (rtems_hdl_tbl[irq->name].hdl != default_rtems_entry.hdl) { 205 printk("IRQ vector % ialready connected\n",irq->name);205 printk("IRQ vector %d already connected\n",irq->name); 206 206 return 0; 207 207 } -
c/src/lib/libbsp/powerpc/shared/pci/pci.c
r10ec9ae r3605c4e 22 22 #include <libcpu/io.h> 23 23 #include <bsp/pci.h> 24 #include <rtems/bspIo.h> 24 25 25 26 /* allow for overriding these definitions */ … … 389 390 if( int_name == -1 ) 390 391 { 391 printk("pci : Unable to resolve device %d:%d w/ swizzled int pin % ito 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 ); 392 393 } 393 394 else … … 459 460 if( int_name == -1 ) 460 461 { 461 printk("pci : Unable to resolve device %d:%d w/ swizzled int pin % ito 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 ); 462 463 } 463 464 else … … 500 501 else 501 502 { 502 printk("pci : No bridge from bus % itowards root found\n", tbus );503 printk("pci : No bridge from bus %d towards root found\n", tbus ); 503 504 goto donesearch; 504 505 }
Note: See TracChangeset
for help on using the changeset viewer.