summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rfid_asic_rc632.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/rfid_asic_rc632.c b/rfid_asic_rc632.c
index 09b4f42..764b7b7 100644
--- a/rfid_asic_rc632.c
+++ b/rfid_asic_rc632.c
@@ -518,7 +518,8 @@ rc632_iso14443a_init(struct rfid_asic_handle *handle)
if (ret < 0)
return ret;
- ret = rc632_reg_write(handle, RC632_REG_RX_WAIT, 0x03);
+ /* Omnikey proprietary driver has 0x03, but 0x06 is the default reset value ?!? */
+ ret = rc632_reg_write(handle, RC632_REG_RX_WAIT, 0x06);
if (ret < 0)
return ret;
personal git repositories of Harald Welte. Your mileage may vary