datapath: Fix sparse warning on BUILD_BUG_ON_INVALID()
[cascardo/ovs.git] / datapath / linux / compat / include / linux / bug.h
1 #ifndef __LINUX_BUG_WRAPPER_H
2 #define __LINUX_BUG_WRAPPER_H 1
3
4 #include_next <linux/bug.h>
5
6 #ifdef __CHECKER__
7 #ifndef BUILD_BUG_ON_INVALID
8 #define  BUILD_BUG_ON_INVALID(e) (0)
9 #endif
10
11 #endif /* __CHECKER__ */
12
13 #endif