From 1c3d0cbbdd33165a7a1292612fe519a358874fae Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 28 Apr 2017 12:41:51 -0600 Subject: [PATCH] Add all ieee802.15.4 IOCTLs to include/sys/ioctl.h --- include/sys/ioctl.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/include/sys/ioctl.h b/include/sys/ioctl.h index acbcc1d3e66..e993a8d6b94 100644 --- a/include/sys/ioctl.h +++ b/include/sys/ioctl.h @@ -63,6 +63,27 @@ # include #endif + +#ifdef CONFIG_WIRELESS_IEEE802154 +#ifdef CONFIG_IEEE802154_DEV +/* Include ieee802.15.4 radio IOCTL definitions */ + +# include +#endif + +#ifdef CONFIG_IEEE802154_MAC +/* Include ieee802.15.4 MAC IOCTL definitions */ + +# include +#endif + +#ifdef CONFIG_IEEE802154_MAC_DEV +/* Include ieee802.15.4 character driver IOCTL definitions */ + +# include +#endif + +#endif /* CONFIG_WIRELESS_IEEE802154 */ #endif /* CONFIG_NSOCKET_DESCRIPTORS > 0 */ /****************************************************************************