Skip to content

Commit

Permalink
Update checks for __FreeBSD_version[1] after MFCs to stable/13 were d…
Browse files Browse the repository at this point in the history
…one.

[1] ((__FreeBSD_version < 1400000) && (__FreeBSD_version >= 1300512))

Co-authored-by: Bjoern A. Zeeb <[email protected]>
  • Loading branch information
wulf7 and Bjoern A. Zeeb authored Jul 20, 2021
1 parent 281dac4 commit c7ac715
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linuxkpi/gplv2/include/linux/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define __GPLV2_LINUX_CPU_H
#include <sys/param.h>
#if (__FreeBSD_version >= 1400015) || \
((__FreeBSD_version < 1400000) && (__FreeBSD_version >= 1399999))
((__FreeBSD_version < 1400000) && (__FreeBSD_version >= 1300512))
#include_next <linux/cpu.h>
#endif
#endif
2 changes: 1 addition & 1 deletion linuxkpi/gplv2/include/linux/stringify.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define __GPLV2_LINUX_STRINGIFY_H
#include <sys/param.h>
#if (__FreeBSD_version >= 1400015) || \
((__FreeBSD_version < 1400000) && (__FreeBSD_version >= 1399999))
((__FreeBSD_version < 1400000) && (__FreeBSD_version >= 1300512))
#include_next <linux/stringify.h>
#endif
#endif

0 comments on commit c7ac715

Please sign in to comment.