|
@@ -383,16 +383,6 @@ static int ath5k_hw_setup_rx_desc(struct ath5k_hw *ah __unused,
|
383
|
383
|
if (flags & AR5K_RXDESC_INTREQ)
|
384
|
384
|
rx_ctl->rx_control_1 |= AR5K_DESC_RX_CTL1_INTREQ;
|
385
|
385
|
|
386
|
|
- if (desc->ds_link < ah->ah_sc->desc_daddr ||
|
387
|
|
- desc->ds_link + sizeof(struct ath5k_desc) > ah->ah_sc->desc_daddr + ah->ah_sc->desc_len ||
|
388
|
|
- size != 2400 ||
|
389
|
|
- *(void **)bus_to_virt(desc->ds_data + 2408) != bus_to_virt(desc->ds_data)) {
|
390
|
|
- DBG("ath5k! set rx desc %p for %d bytes at %p (%08x) link to %p (%08x)\n",
|
391
|
|
- desc, size, bus_to_virt(desc->ds_data), desc->ds_data,
|
392
|
|
- bus_to_virt(desc->ds_link), desc->ds_link);
|
393
|
|
- asm("cli;hlt");
|
394
|
|
- }
|
395
|
|
-
|
396
|
386
|
return 0;
|
397
|
387
|
}
|
398
|
388
|
|