Show
Ignore:
Timestamp:
07/31/12 16:23:19 (12 years ago)
Author:
jwoithe
Message:

Demote SPLIT_TIMEOUT failure warnings to verbose debug messages. As summarised by Stefan Richter: The SPLIT_TIMEOUT manipulation is obsolete since kernel 2.6.39 inclusive. It does not hurt to attempt it, but the user should not be alerted of an alleged error if it fails.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/libieee1394/ieee1394service.cpp

    r2191 r2192  
    410410    if (timeout < split_timeout) { 
    411411        if(!setSplitTimeoutUsecs(getLocalNodeId(), split_timeout+124)) { 
    412             debugWarning("Could not set SPLIT_TIMEOUT to min requested (%d)\n", split_timeout); 
     412            debugOutput(DEBUG_LEVEL_VERBOSE, "Could not set SPLIT_TIMEOUT to min requested (%d)\n", split_timeout); 
    413413        } 
    414414        timeout = getSplitTimeoutUsecs(getLocalNodeId()); 
    415415        if (timeout < split_timeout) { 
    416             debugWarning("Set SPLIT_TIMEOUT to min requested (%d) did not succeed\n", split_timeout); 
     416            debugOutput(DEBUG_LEVEL_VERBOSE, "Set SPLIT_TIMEOUT to min requested (%d) did not succeed\n", split_timeout); 
    417417        } 
    418418    }