- Timestamp:
- Sep 1, 2011, 3:34:05 PM (14 years ago)
- Location:
- trunk/src/os2ahci
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/os2ahci.c
r122 r123 317 317 318 318 /* print initialization message */ 319 c vprintf(init_msg, drv_name, VERSION / 100, VERSION % 100);319 ciprintf(init_msg, drv_name, VERSION / 100, VERSION % 100); 320 320 321 321 #ifdef ECS_BUILD 322 c vprintf("This driver is licensed for use only in conjunction with eComStation.");322 ciprintf("This driver is licensed for use only in conjunction with eComStation."); 323 323 #endif 324 324 … … 362 362 } else { 363 363 /* no adapters found */ 364 c vprintf(" No adapters found.\n");364 ciprintf(" No adapters found.\n"); 365 365 } 366 366 … … 380 380 } 381 381 382 c vprintf(exit_msg, drv_name);382 ciprintf(exit_msg, drv_name); 383 383 return(STDON | ERROR_I24_QUIET_INIT_FAIL); 384 384 } -
trunk/src/os2ahci/os2ahci.h
r122 r123 105 105 #define dddphex if (debug > 2) phex 106 106 107 /* verbosity console print macros */ 108 #define cvprintf if (verbosity > 0) cprintf 109 #define cvvprintf if (verbosity > 1) cprintf 107 /* verbosity console print macros 108 * (we use 'i' in ciprintf here to avoid name clash 109 * with vprintf-like funcs) 110 */ 111 #define ciprintf if (verbosity > 0) cprintf 112 #define ciiprintf if (verbosity > 1) cprintf 110 113 111 114 /* TRACE macros (for our internal ring buffer trace) */ -
trunk/src/os2ahci/pci.c
r122 r123 614 614 615 615 /* found a supported AHCI device */ 616 c vvprintf("found AHCI device: %s %s (%04x:%04x)\n"616 ciiprintf("found AHCI device: %s %s (%04x:%04x)\n" 617 617 " class:0x%06lx bus:%d devfunc:0x%02x\n", 618 618 vendor_from_id(vendor), device_from_id(device),
Note:
See TracChangeset
for help on using the changeset viewer.