Imported Upstream version 17.05
[deb_dpdk.git] / lib / librte_eal / bsdapp / eal / eal_interrupts.c
index 836e483..ea2afff 100644 (file)
 #include "eal_private.h"
 
 int
-rte_intr_callback_register(struct rte_intr_handle *intr_handle __rte_unused,
-                       rte_intr_callback_fn cb __rte_unused,
-                       void *cb_arg __rte_unused)
+rte_intr_callback_register(const struct rte_intr_handle *intr_handle,
+                       rte_intr_callback_fn cb,
+                       void *cb_arg)
 {
+       RTE_SET_USED(intr_handle);
+       RTE_SET_USED(cb);
+       RTE_SET_USED(cb_arg);
+
        return -ENOTSUP;
 }
 
 int
-rte_intr_callback_unregister(struct rte_intr_handle *intr_handle __rte_unused,
-                       rte_intr_callback_fn cb_fn __rte_unused,
-                       void *cb_arg __rte_unused)
+rte_intr_callback_unregister(const struct rte_intr_handle *intr_handle,
+                       rte_intr_callback_fn cb,
+                       void *cb_arg)
 {
+       RTE_SET_USED(intr_handle);
+       RTE_SET_USED(cb);
+       RTE_SET_USED(cb_arg);
+
        return -ENOTSUP;
 }
 
 int
-rte_intr_enable(struct rte_intr_handle *intr_handle __rte_unused)
+rte_intr_enable(const struct rte_intr_handle *intr_handle __rte_unused)
 {
        return -ENOTSUP;
 }
 
 int
-rte_intr_disable(struct rte_intr_handle *intr_handle __rte_unused)
+rte_intr_disable(const struct rte_intr_handle *intr_handle __rte_unused)
 {
        return -ENOTSUP;
 }