summaryrefslogtreecommitdiff
path: root/include/rfid/rfid_asic.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rfid/rfid_asic.h')
-rw-r--r--include/rfid/rfid_asic.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/include/rfid/rfid_asic.h b/include/rfid/rfid_asic.h
deleted file mode 100644
index 6511615..0000000
--- a/include/rfid/rfid_asic.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef _RFID_ASIC_H
-#define _RFID_ASIC_H
-
-enum rfid_frametype;
-
-#include <rfid/rfid_asic_rc632.h>
-
-struct rfid_asic_transport {
- char *name;
- union {
- struct rfid_asic_rc632_transport rc632;
- } priv;
-};
-
-struct rfid_asic_transport_handle {
- void *data; /* handle to stuff like even lower layers */
-
- struct rfid_asic_transport *rat;
-};
-
-
-struct rfid_asic_handle {
- struct rfid_asic_transport_handle *rath;
- unsigned int fc;
- unsigned int mtu;
- unsigned int mru;
-
- union {
- struct rfid_asic_rc632_handle rc632;
- //struct rfid_asic_rc531_handle rc531;
- } priv;
- struct rfid_asic *asic;
-};
-
-
-struct rfid_asic {
- char *name;
- unsigned int fc; /* carrier frequency */
- union {
- struct rfid_asic_rc632 rc632;
- //struct rfid_asic_rc531 rc531;
- } priv;
-};
-
-#endif /* _RFID_ASIC_H */
personal git repositories of Harald Welte. Your mileage may vary