From 098ef26c87b27ddac5eb41f1317fe552fe16e3a7 Mon Sep 17 00:00:00 2001 From: laforge Date: Sun, 11 Sep 2005 19:59:58 +0000 Subject: use 64bit timeout values throughout the code, since some timeouts exceeds 4.8 billion microseconds (seconds). git-svn-id: https://svn.gnumonks.org/trunk/librfid@1426 e0336214-984f-0b4b-a45f-81c69e1f0ede --- rfid_asic_rc632.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rfid_asic_rc632.c') diff --git a/rfid_asic_rc632.c b/rfid_asic_rc632.c index 764b7b7..77e4c47 100644 --- a/rfid_asic_rc632.c +++ b/rfid_asic_rc632.c @@ -148,7 +148,7 @@ rc632_power_down(struct rfid_asic_handle *handle) /* Stupid RC623 implementations don't evaluate interrupts but poll the * command register for "status idle" */ int -rc632_wait_idle(struct rfid_asic_handle *handle, unsigned int time) +rc632_wait_idle(struct rfid_asic_handle *handle, u_int64_t timeout) { unsigned char cmd = 0xff; int ret; @@ -182,7 +182,7 @@ int rc632_transmit(struct rfid_asic_handle *handle, const unsigned char *buf, unsigned char len, - unsigned int timeout) + u_int64_t timeout) { int ret; @@ -617,7 +617,7 @@ static int rc632_iso14443a_transcieve(struct rfid_asic_handle *handle, const unsigned char *tx_buf, unsigned int tx_len, unsigned char *rx_buf, unsigned int *rx_len, - unsigned int timeout, unsigned int flags) + u_int64_t timeout, unsigned int flags) { int ret; unsigned char rxl = *rx_len & 0xff; -- cgit v1.2.3