* Fix initialisation of CamDevice::fIsoIn.

* Fix debug message on IsoIn path.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29280 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ithamar R. Adema
2009-02-22 10:53:13 +00:00
parent 6595d6836d
commit 32bf83a34b
@@ -35,6 +35,8 @@ struct { const char *name; SensorInstFunc instfunc; } kSensorTable[] = {
CamDevice::CamDevice(CamDeviceAddon &_addon, BUSBDevice* _device)
: fInitStatus(B_NO_INIT),
fSensor(NULL),
fBulkIn(NULL),
fIsoIn(NULL),
fLastParameterChanges(0),
fCamDeviceAddon(_addon),
fDevice(_device),
@@ -104,6 +106,7 @@ CamDevice::Unplugged()
{
fDevice = NULL;
fBulkIn = NULL;
fIsoIn = NULL;
}
@@ -539,7 +542,7 @@ CamDevice::DataPumpThread()
#endif
if (len <= 0) {
PRINT((CH ": BulkIn: %s" CT, strerror(len)));
PRINT((CH ": IsoIn: %s" CT, strerror(len)));
break;
}