Search
lxdream.org :: lxdream :: r166:8aa70cf503a2
lxdream 0.9.1
released Jun 29
Download Now
changeset166:8aa70cf503a2
parent165:126794f2ea6d
child167:71c0cc416a64
authornkeynes
dateSun Jun 18 12:01:53 2006 +0000 (17 years ago)
Remove/cleanup more old logging
src/display.c
src/gdrom/ide.c
src/sh4/sh4mmio.c
1.1 --- a/src/display.c Sun Jun 18 12:01:06 2006 +0000
1.2 +++ b/src/display.c Sun Jun 18 12:01:53 2006 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: display.c,v 1.1 2006-05-15 08:28:48 nkeynes Exp $
1.6 + * $Id: display.c,v 1.2 2006-06-18 12:01:50 nkeynes Exp $
1.7 *
1.8 * Generic support for keyboard and other input sources. The active display
1.9 * driver is expected to deliver events here, where they're translated and
1.10 @@ -75,7 +75,6 @@
1.11 key->callback = callback;
1.12 key->data = data;
1.13 key->value = value;
1.14 - INFO( "Registered key '%s' (%4x)", keysym, keycode );
1.15 return TRUE;
1.16 }
1.17
2.1 --- a/src/gdrom/ide.c Sun Jun 18 12:01:06 2006 +0000
2.2 +++ b/src/gdrom/ide.c Sun Jun 18 12:01:53 2006 +0000
2.3 @@ -1,5 +1,5 @@
2.4 /**
2.5 - * $Id: ide.c,v 1.15 2006-06-15 10:32:42 nkeynes Exp $
2.6 + * $Id: ide.c,v 1.16 2006-06-18 12:01:53 nkeynes Exp $
2.7 *
2.8 * IDE interface implementation
2.9 *
2.10 @@ -388,9 +388,9 @@
2.11 int blocksize = idereg.lba1 + (idereg.lba2<<8);
2.12
2.13 /* Okay we have the packet in the command buffer */
2.14 - WARN( "ATAPI: Received Packet command: %02X", cmd[0] );
2.15 - fwrite_dump( (unsigned char *)cmd, 12, stderr );
2.16 - // fprint_stack_trace( stderr );
2.17 + INFO( "ATAPI packet: %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X",
2.18 + cmd[0], cmd[1], cmd[2], cmd[3], cmd[4], cmd[5], cmd[6], cmd[7],
2.19 + cmd[8], cmd[9], cmd[10], cmd[11] );
2.20 switch( cmd[0] ) {
2.21 case PKT_CMD_TEST_READY:
2.22 if( !gdrom_is_mounted() ) {
3.1 --- a/src/sh4/sh4mmio.c Sun Jun 18 12:01:06 2006 +0000
3.2 +++ b/src/sh4/sh4mmio.c Sun Jun 18 12:01:53 2006 +0000
3.3 @@ -1,5 +1,5 @@
3.4 /**
3.5 - * $Id: sh4mmio.c,v 1.8 2006-02-05 04:02:57 nkeynes Exp $
3.6 + * $Id: sh4mmio.c,v 1.9 2006-06-18 12:01:53 nkeynes Exp $
3.7 *
3.8 * Miscellaneous and not-really-implemented SH4 peripheral modules. Also
3.9 * responsible for including the IMPL side of the SH4 MMIO pages.
3.10 @@ -41,7 +41,6 @@
3.11 switch(reg) {
3.12 case CCR:
3.13 mmu_set_cache_mode( val & (CCR_OIX|CCR_ORA) );
3.14 - INFO( "Cache mode set to %08X", val );
3.15 break;
3.16 default:
3.17 break;
.