From: Cunming Liang Date: Mon, 20 Jul 2015 03:02:25 +0000 (+0800) Subject: eal/bsd: fix inappropriate header guards X-Git-Tag: spdx-start~8623 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e9350774502dd22faf70ac17c0ed298a0ed6990d;p=dpdk.git eal/bsd: fix inappropriate header guards Signed-off-by: Cunming Liang --- diff --git a/lib/librte_eal/bsdapp/eal/include/exec-env/rte_interrupts.h b/lib/librte_eal/bsdapp/eal/include/exec-env/rte_interrupts.h index d4c388ff33..d5f391fce5 100644 --- a/lib/librte_eal/bsdapp/eal/include/exec-env/rte_interrupts.h +++ b/lib/librte_eal/bsdapp/eal/include/exec-env/rte_interrupts.h @@ -35,8 +35,8 @@ #error "don't include this file directly, please include generic " #endif -#ifndef _RTE_LINUXAPP_INTERRUPTS_H_ -#define _RTE_LINUXAPP_INTERRUPTS_H_ +#ifndef _RTE_BSDAPP_INTERRUPTS_H_ +#define _RTE_BSDAPP_INTERRUPTS_H_ enum rte_intr_handle_type { RTE_INTR_HANDLE_UNKNOWN = 0, @@ -52,4 +52,4 @@ struct rte_intr_handle { enum rte_intr_handle_type type; /**< handle type */ }; -#endif /* _RTE_LINUXAPP_INTERRUPTS_H_ */ +#endif /* _RTE_BSDAPP_INTERRUPTS_H_ */