uru4000: Don't throw warnings during "power on"
During startup, we'd always get: (fprintd:151125): libfprint-uru4000-WARNING **: 12:16:56.724: ignoring unexpected interrupt 56aa But we actually know what this interrupt is, and it's not unexpected, as it tells us that the reader is now powered on.
This commit is contained in:
parent
2ba60d0a52
commit
a267e30fc6
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ finger_presence_irq_cb (FpImageDevice *dev,
|
|||
fpi_image_device_report_finger_status (dev, TRUE);
|
||||
else if (type == IRQDATA_FINGER_OFF)
|
||||
fpi_image_device_report_finger_status (dev, FALSE);
|
||||
else
|
||||
else if (type != IRQDATA_SCANPWR_ON)
|
||||
fp_warn ("ignoring unexpected interrupt %04x", type);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue