1 --- a/drivers/vlynq/vlynq.c
2 +++ b/drivers/vlynq/vlynq.c
3 @@ -515,9 +515,14 @@ static int __vlynq_enable_device(struct
4 !__vlynq_try_external(dev))
7 - if (!__vlynq_try_external(dev) ||
8 - !__vlynq_try_local(dev) ||
9 - !__vlynq_try_remote(dev))
10 + /* XXX: I don't really know what difference it makes, if the order
11 + * of the following calls is changed, but at least in this order
12 + * my fritzbox doesn't hang at startup as in
13 + * https://dev.openwrt.org/ticket/7324
15 + if (!__vlynq_try_remote(dev) ||
16 + !__vlynq_try_local(dev) ||
17 + !__vlynq_try_external(dev))