Changeset 2732
- Timestamp:
- 01/27/18 21:54:17 (1 year ago)
- Files:
-
- trunk/libffado/src/bebob/bebob_dl_mgr.cpp (modified) (1 diff)
- trunk/libffado/src/ffadodevice.h (modified) (1 diff)
- trunk/libffado/src/fireworks/fireworks_control.cpp (modified) (1 diff)
- trunk/libffado/src/libavc/general/avc_unit.cpp (modified) (1 diff)
- trunk/libffado/src/libstreaming/StreamProcessorManager.cpp (modified) (1 diff)
- trunk/libffado/src/libutil/PosixThread.cpp (modified) (1 diff)
- trunk/libffado/src/libutil/Watchdog.cpp (modified) (1 diff)
- trunk/libffado/src/rme/rme_avdevice.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/bebob/bebob_dl_mgr.cpp
r2707 r2732 540 540 } 541 541 } 542 printf( "download protocol successful y completed\n" );542 printf( "download protocol successfully completed\n" ); 543 543 return result; 544 544 } trunk/libffado/src/ffadodevice.h
r2691 r2732 141 141 * @brief This is called by the DeviceManager to discover & configure the device 142 142 * 143 * @return true if the device was discovered successful y143 * @return true if the device was discovered successfully 144 144 */ 145 145 virtual bool discover() = 0; trunk/libffado/src/fireworks/fireworks_control.cpp
r2393 r2732 774 774 return m_ParentDevice.saveSession(); 775 775 case eT_Identify: 776 debugOutput(DEBUG_LEVEL_VERBOSE, "i ndentify device\n");776 debugOutput(DEBUG_LEVEL_VERBOSE, "identify device\n"); 777 777 { 778 778 EfcIdentifyCmd cmd; trunk/libffado/src/libavc/general/avc_unit.cpp
r1997 r2732 175 175 176 176 if ( !enumerateSubUnits() ) { 177 debugError( "Could not enum arate sub units\n" );177 debugError( "Could not enumerate sub units\n" ); 178 178 return false; 179 179 } trunk/libffado/src/libstreaming/StreamProcessorManager.cpp
r2651 r2732 616 616 617 617 //STEP X: when we implement such a function, we can wait for a signal from the devices that they 618 // have a quired lock618 // have acquired lock 619 619 //debugOutput( DEBUG_LEVEL_VERBOSE, "Waiting for device(s) to indicate clock sync lock...\n"); 620 620 //sleep(2); // FIXME: be smarter here trunk/libffado/src/libutil/PosixThread.cpp
r2164 r2732 223 223 struct sched_param rtparam; 224 224 int res; 225 debugOutput( DEBUG_LEVEL_VERBOSE, "(%s, %p) A quire realtime, prio %d\n", m_id.c_str(), this, fPriority);225 debugOutput( DEBUG_LEVEL_VERBOSE, "(%s, %p) Acquire realtime, prio %d\n", m_id.c_str(), this, fPriority); 226 226 227 227 if (!fThread) trunk/libffado/src/libutil/Watchdog.cpp
r2344 r2732 296 296 if(m_realtime) { 297 297 if(!m_CheckThread->AcquireRealTime(m_priority)) { 298 debugWarning("(%p) Could not a quire realtime priotiry for watchdog thread.\n", this);298 debugWarning("(%p) Could not acquire realtime priotiry for watchdog thread.\n", this); 299 299 } 300 300 } trunk/libffado/src/rme/rme_avdevice.cpp
r2724 r2732 754 754 err = hardware_init_streaming(dev_config->hardware_freq, iso_tx_channel) != 0; 755 755 if (err) { 756 debugFatal("Could not in tialise device streaming system\n");756 debugFatal("Could not initialise device streaming system\n"); 757 757 return false; 758 758 }