mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-30 22:05:19 +02:00
fix vlynq initialization (closes: #2135)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8423 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1a8d2661ac
commit
828c43f29d
@ -299,21 +299,20 @@ int vlynq_device_enable(struct vlynq_device *dev)
|
|||||||
|
|
||||||
dev->local->control = 0;
|
dev->local->control = 0;
|
||||||
dev->remote->control = 0;
|
dev->remote->control = 0;
|
||||||
|
dev->local->control = VLYNQ_CTRL_CLOCK_INT;
|
||||||
|
|
||||||
div = ar7_dsp_freq() / 62500000;
|
div = ar7_dsp_freq() / 62500000;
|
||||||
if(ar7_dsp_freq() / div != 62500000)
|
if (div != 0 ) {
|
||||||
{
|
if (ar7_dsp_freq() / div != 62500000) {
|
||||||
printk(KERN_WARNING
|
printk(KERN_WARNING
|
||||||
"VLYNQ: Adjusted requested frequency %d to %d\n",
|
"VLYNQ: Adjusted requested frequency %d to %d\n",
|
||||||
62500000, ar7_dsp_freq() / div);
|
62500000, ar7_dsp_freq() / div);
|
||||||
}
|
}
|
||||||
|
|
||||||
printk("VLYNQ: Setting clock to %d (clock divider %u)\n", ar7_dsp_freq() / div, div);
|
printk("VLYNQ: Setting clock to %d (clock divider %u)\n",
|
||||||
dev->local->control = VLYNQ_CTRL_CLOCK_DIV((div - 1)) |
|
ar7_dsp_freq() / div, div);
|
||||||
VLYNQ_CTRL_CLOCK_INT;
|
dev->local->control |= VLYNQ_CTRL_CLOCK_DIV((div - 1));
|
||||||
/*
|
}
|
||||||
dev->local->control = VLYNQ_CTRL_CLOCK_INT;
|
|
||||||
*/
|
|
||||||
if (vlynq_linked(dev))
|
if (vlynq_linked(dev))
|
||||||
return vlynq_setup_irq(dev);
|
return vlynq_setup_irq(dev);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user