summaryrefslogtreecommitdiff
path: root/openpcd
diff options
context:
space:
mode:
author(no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2006-07-25 09:44:51 +0000
committer(no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1>2006-07-25 09:44:51 +0000
commit952042d28299876878737842d3178e2aa953e178 (patch)
treef56e96e07cd64476fefe95a197edf4e94f31b751 /openpcd
parentc73676920bffe374da9314606cf927ce9d969431 (diff)
export turn_{on,off}_rf functions
git-svn-id: https://svn.openpcd.org:2342/trunk@48 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpcd')
-rw-r--r--openpcd/firmware/src/rc632_highlevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpcd/firmware/src/rc632_highlevel.c b/openpcd/firmware/src/rc632_highlevel.c
index e0fcffa..136447e 100644
--- a/openpcd/firmware/src/rc632_highlevel.c
+++ b/openpcd/firmware/src/rc632_highlevel.c
@@ -59,14 +59,14 @@ rc632_set_bit_mask(struct rfid_asic_handle *handle,
return rc632_reg_write(handle, reg, (tmp & ~mask)|(val & mask));
}
-static int
+int
rc632_turn_on_rf(struct rfid_asic_handle *handle)
{
ENTER();
return rc632_set_bits(handle, RC632_REG_TX_CONTROL, 0x03);
}
-static int
+int
rc632_turn_off_rf(struct rfid_asic_handle *handle)
{
ENTER();
personal git repositories of Harald Welte. Your mileage may vary