build: create pkginfo dir earlier to avoid build breakage
[openwrt/staging/chunkeey.git] / package / madwifi / patches / 431-compile_fixes.patch
index 03ca2e64bd7934fb630da1a35cd8a8c2820943a6..b11d406a0d7ecc6377c9280816031d84468841c8 100644 (file)
@@ -1,34 +1,34 @@
 --- a/ath/if_ath.c
 +++ b/ath/if_ath.c
-@@ -2387,7 +2387,9 @@ ath_intr(int irq, void *dev_id, struct p
+@@ -2388,7 +2388,9 @@ ath_intr(int irq, void *dev_id, struct p
                if (status & (HAL_INT_RX | HAL_INT_RXPHY)) {
                        ath_uapsd_processtriggers(sc, hw_tsf);
                        sc->sc_isr &= ~HAL_INT_RX;
 -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)
-+                      if (netif_rx_schedule_prep(&sc->sc_napi))
++                      if (napi_schedule_prep(&sc->sc_napi))
 +#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
                        if (netif_rx_schedule_prep(dev, &sc->sc_napi))
  #else
                        if (netif_rx_schedule_prep(dev))
-@@ -2395,7 +2397,9 @@ ath_intr(int irq, void *dev_id, struct p
+@@ -2396,7 +2398,9 @@ ath_intr(int irq, void *dev_id, struct p
                        {
                                sc->sc_imask &= ~HAL_INT_RX;
                                ath_hal_intrset(ah, sc->sc_imask);
 -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)
-+                              __netif_rx_schedule(&sc->sc_napi);
++                              __napi_schedule(&sc->sc_napi);
 +#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
                                __netif_rx_schedule(dev, &sc->sc_napi);
  #else
                                __netif_rx_schedule(dev);
-@@ -7131,7 +7135,9 @@ rx_next:
+@@ -7135,7 +7139,9 @@ rx_next:
                local_irq_restore(flags);
        }
  
 -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)
-+      netif_rx_complete(napi);
++      napi_complete(napi);
 +#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
        netif_rx_complete(dev, napi);
  #else