diff options
author | Damien George <damien.p.george@gmail.com> | 2017-02-21 17:27:17 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-21 17:27:17 +1100 |
commit | 26ddd4b6218dfc2033a24a8ea4128c32527fb6c6 (patch) | |
tree | 3d21a756205ce76e34b8029cc9165bd982e60a4e | |
parent | 1c35270667dbdafa7a8e16a7b8546add07cc7e00 (diff) | |
download | micropython-26ddd4b6218dfc2033a24a8ea4128c32527fb6c6.tar.gz micropython-26ddd4b6218dfc2033a24a8ea4128c32527fb6c6.zip |
cc3200/mods/modwlan: Remove unused header includes; simplify others.
-rw-r--r-- | cc3200/mods/modwlan.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cc3200/mods/modwlan.c b/cc3200/mods/modwlan.c index 0235502cf5..8b910b1691 100644 --- a/cc3200/mods/modwlan.c +++ b/cc3200/mods/modwlan.c @@ -35,13 +35,8 @@ #include "py/runtime.h" #include "py/stream.h" #include "py/mphal.h" -#include "inc/hw_types.h" -#include "inc/hw_ints.h" -#include "inc/hw_memmap.h" -#include "rom_map.h" -#include "prcm.h" -#include "timeutils.h" -#include "netutils.h" +#include "lib/timeutils/timeutils.h" +#include "lib/netutils/netutils.h" #include "modnetwork.h" #include "modusocket.h" #include "modwlan.h" |