summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>2006-10-14 21:45:56 +0000
committerlaforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede>2006-10-14 21:45:56 +0000
commitfee486a7c477f4360e99ff32f01ef6a8707e4cee (patch)
tree12cc9960a0fd737e4b00e9ef57cbc0e4df7211ec
parent6bc8adf40b86195e610f77eed99dc6cd3497936f (diff)
prefix functions of openpcd firmware with 'opcd_' to prevent confusion :)
git-svn-id: https://svn.gnumonks.org/trunk/librfid@1907 e0336214-984f-0b4b-a45f-81c69e1f0ede
-rw-r--r--src/rfid_reader_openpcd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rfid_reader_openpcd.c b/src/rfid_reader_openpcd.c
index 9397cb0..9f5517c 100644
--- a/src/rfid_reader_openpcd.c
+++ b/src/rfid_reader_openpcd.c
@@ -226,14 +226,14 @@ const struct rfid_asic_transport openpcd_rat = {
static int openpcd_reg_write(struct rfid_asic_transport_handle *rath,
unsigned char reg, unsigned char value)
{
- return rc632_reg_write(rath, reg, value);
+ return opcd_rc632_reg_write(rath, reg, value);
}
static int openpcd_reg_read(struct rfid_asic_transport_handle *rath,
unsigned char reg,
unsigned char *value)
{
- return rc632_reg_read(rath, reg, value);
+ return opcd_rc632_reg_read(rath, reg, value);
}
@@ -241,7 +241,7 @@ static int openpcd_fifo_read(struct rfid_asic_transport_handle *rath,
unsigned char num_bytes,
unsigned char *buf)
{
- return rc632_fifo_read(rath, num_bytes, buf);
+ return opcd_rc632_fifo_read(rath, num_bytes, buf);
}
static int openpcd_fifo_write(struct rfid_asic_transport_handle *rath,
@@ -249,7 +249,7 @@ static int openpcd_fifo_write(struct rfid_asic_transport_handle *rath,
const unsigned char *bytes,
unsigned char flags)
{
- return rc632_fifo_write(rath, len, bytes, flags);
+ return opcd_rc632_fifo_write(rath, len, bytes, flags);
}
const struct rfid_asic_transport openpcd_rat = {
personal git repositories of Harald Welte. Your mileage may vary