master/slave.c
changeset 928 7fbc0b943c65
parent 926 6bb33c6ec770
child 960 36e460ffbb5e
--- a/master/slave.c	Fri May 30 10:46:14 2008 +0000
+++ b/master/slave.c	Fri May 30 10:49:51 2008 +0000
@@ -1200,28 +1200,6 @@
 /*****************************************************************************/
 
 /**
-   \return 0 in case of success, else < 0
-*/
-
-int ec_slave_validate(const ec_slave_t *slave, /**< EtherCAT slave */
-                      uint32_t vendor_id, /**< vendor ID */
-                      uint32_t product_code /**< product code */
-                      )
-{
-    if (vendor_id != slave->sii.vendor_id ||
-        product_code != slave->sii.product_code) {
-        EC_ERR("Invalid slave type at position %u:\n", slave->ring_position);
-        EC_ERR("  Requested: 0x%08X 0x%08X\n", vendor_id, product_code);
-        EC_ERR("      Found: 0x%08X 0x%08X\n",
-                slave->sii.vendor_id, slave->sii.product_code);
-        return -1;
-    }
-    return 0;
-}
-
-/*****************************************************************************/
-
-/**
    Counts the total number of Sdos and entries in the dictionary.
 */