when alias is used EC_FIND_SLAVE fails to find slave at position greater than 0
>From 1349cabe197e84208a196d9186111551f24e25f5 Mon Sep 17 00:00:00 2001 From: raz <razi...@gmail.com> Date: Mon, 27 Apr 2015 11:51:23 +0300 Subject: [PATCH] alias search incorrect --- drivers/misc/ethercat_master/master/master.c | 6 +++--- diff --git a/drivers/misc/ethercat_master/master/master.c b/drivers/misc/ethercat_master/master/master.c index 34cc1b5..d9ec5b3 100644 --- a/drivers/misc/ethercat_master/master/master.c +++ b/drivers/misc/ethercat_master/master/master.c @@ -1569,9 +1569,9 @@ void ec_master_attach_slave_configs( } \ if (slave == master->slaves + master->slave_count) \ return NULL; \ - } \ - \ - slave += position; \ + } else{ \ + slave += position; \ + } \ if (slave < master->slaves + master->slave_count) { \ return slave; \ } else { \ -- 1.9.1 -- https://sites.google.com/site/ironspeedlinux/
_______________________________________________ etherlab-dev mailing list etherlab-dev@etherlab.org http://lists.etherlab.org/mailman/listinfo/etherlab-dev