summaryrefslogtreecommitdiff
path: root/backport-include/backport/checks.h
blob: 83c87a338b95ec2cff397c4acd8671d5e6343b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __BACKPORT_CHECKS
#define __BACKPORT_CHECKS

#if defined(CPTCFG_MAC80211) && defined(CPTCFG_MAC80211)
#error "You must not have mac80211 built into your kernel if you want to enable it"
#endif

#if defined(CPTCFG_CFG80211) && defined(CPTCFG_CFG80211)
#error "You must not have cfg80211 built into your kernel if you want to enable it"
#endif

#endif /* __BACKPORT_CHECKS */