Forráskód Böngészése

qcacmn: Fix NAPI compilation issue for ext group interrupts

In current code ext group interrupts are not support. Defined these
functions to NULL to avoid compilation issue.

Change-Id: I7e1e027a3faabce1a8844606c5c5c3a412256ded
CRs-Fixed: 1088926
Venkateswara Swamy Bandaru 8 éve
szülő
commit
aefb2f4dc4
1 módosított fájl, 7 hozzáadás és 7 törlés
  1. 7 7
      hif/inc/hif_napi.h

+ 7 - 7
hif/inc/hif_napi.h

@@ -214,9 +214,6 @@ static inline int hif_napi_event(struct hif_opaque_softc     *hif,
 static inline int hif_napi_enabled(struct hif_opaque_softc *hif, int ce)
 { return 0; }
 
-static inline int hif_ext_napi_enabled(struct hif_opaque_softc *hif, int ce)
-{ return 0; }
-
 /* called from hdd (napi_poll), using napi id as a selector */
 static inline void hif_napi_enable_irq(struct hif_opaque_softc *hif, int id)
 { return; }
@@ -224,13 +221,16 @@ static inline void hif_napi_enable_irq(struct hif_opaque_softc *hif, int id)
 static inline int hif_napi_schedule(struct hif_opaque_softc *hif, int ce_id)
 { return 0; }
 
-static inline int hif_napi_schedule_grp(struct hif_opaque_softc *hif,
-		uint32_t grp_id)
-{ return 0; }
-
 static inline int hif_napi_poll(struct napi_struct *napi, int budget)
 { return -EPERM; }
 
 #endif /* FEATURE_NAPI */
 
+static inline int hif_ext_napi_enabled(struct hif_opaque_softc *hif, int ce)
+{ return 0; }
+
+static inline int hif_napi_schedule_grp(struct hif_opaque_softc *hif,
+		uint32_t grp_id)
+{ return 0; }
+
 #endif /* __HIF_NAPI_H__ */