mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
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:
committed by
Benjamin Berg
parent
2ba60d0a52
commit
a267e30fc6
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user