mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-20 07:24:36 +01:00
vlynq: small fixes
SVN-Revision: 10711
This commit is contained in:
parent
add755735a
commit
67dc179e05
@ -380,6 +380,7 @@ static int __vlynq_enable_device(struct vlynq_device *dev)
|
|||||||
switch (dev->divisor) {
|
switch (dev->divisor) {
|
||||||
case vlynq_div_auto:
|
case vlynq_div_auto:
|
||||||
/* Only try locally supplied clock, others cause problems */
|
/* Only try locally supplied clock, others cause problems */
|
||||||
|
vlynq_reg_write(dev->local->control, 0);
|
||||||
vlynq_reg_write(dev->remote->control, 0);
|
vlynq_reg_write(dev->remote->control, 0);
|
||||||
for (i = vlynq_ldiv2; i <= vlynq_ldiv8; i++) {
|
for (i = vlynq_ldiv2; i <= vlynq_ldiv8; i++) {
|
||||||
vlynq_reg_write(dev->local->control,
|
vlynq_reg_write(dev->local->control,
|
||||||
@ -395,11 +396,11 @@ static int __vlynq_enable_device(struct vlynq_device *dev)
|
|||||||
}
|
}
|
||||||
case vlynq_ldiv1: case vlynq_ldiv2: case vlynq_ldiv3: case vlynq_ldiv4:
|
case vlynq_ldiv1: case vlynq_ldiv2: case vlynq_ldiv3: case vlynq_ldiv4:
|
||||||
case vlynq_ldiv5: case vlynq_ldiv6: case vlynq_ldiv7: case vlynq_ldiv8:
|
case vlynq_ldiv5: case vlynq_ldiv6: case vlynq_ldiv7: case vlynq_ldiv8:
|
||||||
vlynq_reg_write(dev->remote->control, 0);
|
|
||||||
vlynq_reg_write(dev->local->control,
|
vlynq_reg_write(dev->local->control,
|
||||||
VLYNQ_CTRL_CLOCK_INT |
|
VLYNQ_CTRL_CLOCK_INT |
|
||||||
VLYNQ_CTRL_CLOCK_DIV(dev->divisor -
|
VLYNQ_CTRL_CLOCK_DIV(dev->divisor -
|
||||||
vlynq_ldiv1));
|
vlynq_ldiv1));
|
||||||
|
vlynq_reg_write(dev->remote->control, 0);
|
||||||
if (vlynq_linked(dev)) {
|
if (vlynq_linked(dev)) {
|
||||||
printk(KERN_DEBUG
|
printk(KERN_DEBUG
|
||||||
"%s: using local clock divisor %d\n",
|
"%s: using local clock divisor %d\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user