if (err_code < 0)
return err_code;
}
- PDEBUG(D_ERR, "status is %02x", status);
+ if (status != 0x0a)
+ PDEBUG(D_ERR, "status is %02x", status);
tries = 0;
while (tries < 4) {
if (err_code < 0)
return err_code;
}
- PDEBUG(D_ERR, "Read 16 bytes from camera");
data[0] = 0x19;
err_code = mr_write(gspca_dev, 1);
if (err_code < 0)
return err_code;
- PDEBUG(D_ERR, "Read 16 bytes from camera");
- PDEBUG(D_ERR, "Byte zero reported is %01x", gspca_dev->usb_buf[0]);
+ PDEBUG(D_PROBE, "Byte zero reported is %01x", gspca_dev->usb_buf[0]);
return gspca_dev->usb_buf[0];
}
cam->cam_mode = vga_mode;
cam->nmodes = ARRAY_SIZE(vga_mode);
- PDEBUG(D_PROBE,
- "MR97310A camera detected"
- " (vid/pid 0x%04X:0x%04X)", id->idVendor, id->idProduct);
-
if (id->idProduct == 0x010e) {
sd->cam_type = CAM_TYPE_CIF;
cam->nmodes--;
else
sd->sensor_type = 0;
- PDEBUG(D_ERR, "Sensor type is %01x", sd->sensor_type);
+ PDEBUG(D_PROBE, "MR97310A CIF camera detected, sensor: %d",
+ sd->sensor_type);
if (sd->sensor_type == 0)
gspca_dev->ctrl_dis = (1 << BRIGHTNESS_IDX) |
(1 << EXPOSURE_IDX) | (1 << GAIN_IDX);
} else {
sd->cam_type = CAM_TYPE_VGA;
+ PDEBUG(D_PROBE, "MR97310A VGA camera detected");
gspca_dev->ctrl_dis = (1 << BRIGHTNESS_IDX) |
(1 << EXPOSURE_IDX) | (1 << GAIN_IDX);
}
if (err_code < 0)
return err_code;
- PDEBUG(D_ERR, "Read 16 bytes from camera");
- PDEBUG(D_ERR, "Byte reported is %02x", data[0]);
+ PDEBUG(D_PROBE, "Byte reported is %02x", data[0]);
msleep(200);
/*
data[0] = get_sensor_id(gspca_dev);
if (data[0] == 0x7f) {
sd->sensor_type = 1;
- PDEBUG(D_ERR, "sensor_type corrected to 1");
+ PDEBUG(D_PROBE, "sensor_type corrected to 1");
}
msleep(200);
}
zero_the_pointer(gspca_dev);
msleep(200);
if (sd->cam_type == CAM_TYPE_CIF) {
- PDEBUG(D_ERR, "CIF camera");
err_code = start_cif_cam(gspca_dev);
} else {
- PDEBUG(D_ERR, "VGA camera");
err_code = start_vga_cam(gspca_dev);
}
return err_code;