remove autogenerated file
[librfid] / src / rfid_protocol.c
index 0cd4f66..71c52ff 100644 (file)
@@ -28,12 +28,13 @@ static const struct rfid_protocol *rfid_protocols[] = {
        [RFID_PROTOCOL_MIFARE_CLASSIC]  = &rfid_protocol_mfcl,
        [RFID_PROTOCOL_MIFARE_UL]       = &rfid_protocol_mful,
        [RFID_PROTOCOL_TCL]             = &rfid_protocol_tcl,
+       [RFID_PROTOCOL_TAGIT]           = &rfid_protocol_tagit,
 };
 
 struct rfid_protocol_handle *
 rfid_protocol_init(struct rfid_layer2_handle *l2h, unsigned int id)
 {
-       struct rfid_protocol *p;
+       const struct rfid_protocol *p;
        struct rfid_protocol_handle *ph = NULL;
 
        if (id >= ARRAY_SIZE(rfid_protocols))