Treat vlynq external divisor just like automatic, fix comment about it, thanks sn9
authorFlorian Fainelli <florian@openwrt.org>
Mon, 1 Sep 2008 19:29:25 +0000 (19:29 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Mon, 1 Sep 2008 19:29:25 +0000 (19:29 +0000)
SVN-Revision: 12467

target/linux/ar7/files/drivers/vlynq/vlynq.c

index 14022b1fb2391e43b9597efbd27b038b61956e36..25f303bf1d215ba4b6adf98e5abc2c341dde9c82 100644 (file)
@@ -367,8 +367,8 @@ static int __vlynq_enable_device(struct vlynq_device *dev)
                return result;
 
        switch (dev->divisor) {
+       case vlynq_div_external:
        case vlynq_div_auto:
-               /* Only try locally supplied clock, others cause problems */
                vlynq_reg_write(dev->local->control, 0);
                vlynq_reg_write(dev->remote->control, 0);
                if (vlynq_linked(dev)) {
@@ -377,6 +377,8 @@ static int __vlynq_enable_device(struct vlynq_device *dev)
                                dev->dev.bus_id);
                        return 0;
                }
+
+               /* Only try locally supplied clock, others cause problems */
                for (i = dev->dev_id ? vlynq_ldiv2 : vlynq_ldiv8; dev->dev_id ?
                                i <= vlynq_ldiv8 : i >= vlynq_ldiv2;
                                dev->dev_id ? i++ : i--) {