Changeset 2972e21 in mainline for uspace/drv/uhci/debug.h


Ignore:
Timestamp:
2010-12-31T15:44:54Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
Children:
28f660d
Parents:
bf5a3be
Message:

minor changes

change debug level names
use current dir as include dir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci/debug.h

    rbf5a3be r2972e21  
    4141enum debug_levels {
    4242        DEBUG_LEVEL_FATAL_ERROR = 1,
    43         DEBUG_LEVEL_CRITICAL_ERROR = 2,
    44         DEBUG_LEVEL_ERROR = 3,
    45         DEBUG_LEVEL_WARNING = 4,
    46         DEBUG_LEVEL_INFO = 5
     43        DEBUG_LEVEL_ERROR = 2,
     44        DEBUG_LEVEL_WARNING = 3,
     45        DEBUG_LEVEL_INFO = 4,
     46        DEBUG_LEVEL_VERBOSE = 5,
     47        DEBUG_LEVEL_MAX = DEBUG_LEVEL_VERBOSE
    4748};
    4849
     
    5657        usb_dprintf( NAME, DEBUG_LEVEL_INFO, fmt, ##args )
    5758
     59#define uhci_print_verbose( fmt, args... ) \
     60        usb_dprintf( NAME, DEBUG_LEVEL_VERBOSE, fmt, ##args )
     61
    5862#endif
    5963/**
Note: See TracChangeset for help on using the changeset viewer.