Changeset 583 for trunk/libffado/src/genericavc/avc_avdevice.cpp
- Timestamp:
- 08/29/07 02:19:04 (16 years ago)
- Files:
-
- trunk/libffado/src/genericavc/avc_avdevice.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/genericavc/avc_avdevice.cpp
r560 r583 56 56 }; 57 57 58 AvDevice::AvDevice( std::auto_ptr< ConfigRom >( configRom ), 59 Ieee1394Service& ieee1394service, 60 int nodeId ) 61 : FFADODevice( configRom, ieee1394service, nodeId ) 58 AvDevice::AvDevice( Ieee1394Service& ieee1394Service, 59 std::auto_ptr<ConfigRom>( configRom )) 60 : FFADODevice( ieee1394Service, configRom ) 62 61 , m_model( NULL ) 63 62 64 63 { 65 64 debugOutput( DEBUG_LEVEL_VERBOSE, "Created GenericAVC::AvDevice (NodeID %d)\n", 66 nodeId);65 configRom->getNodeId() ); 67 66 addOption(Util::OptionContainer::Option("snoopMode",false)); 68 67 } … … 92 91 93 92 return false; 93 } 94 95 FFADODevice * 96 AvDevice::createDevice( Ieee1394Service& ieee1394Service, 97 std::auto_ptr<ConfigRom>( configRom )) 98 { 99 return new AvDevice(ieee1394Service, configRom ); 94 100 } 95 101