summaryrefslogtreecommitdiff
path: root/src/devices/wimax/nm-wimax-util.c
Commit message (Collapse)AuthorAgeFilesLines
* all: consistently include config.hDan Winship2014-11-131-0/+2
| | | | | | | | | | | config.h should be included from every .c file, and it should be included before any other include. Fix that. (As a side effect of how I did this, this also changes us to consistently use "config.h" rather than <config.h>. To the extent that it matters [which is not much], quotes are more correct anyway, since we're talking about a file in our own build tree, not a system include.)
* build: renable -Wstrict-prototypes compiler warningThomas Haller2014-10-291-1/+0
| | | | | | | | | | | | | The warning -Wstrict-prototypes was disabled by commit db9b1df0e47996ff8aaea468a11e1e97f64ee126 . Enable it again, but avoid warnings for WiMax SDK by explicitly disabling the compiler warning where needed. Apparently clang does not produce a warning for -Wstrict-prototypes, hence we don't need a clang specific #pragma. Signed-off-by: Thomas Haller <thaller@redhat.com>
* core: move devices into a subdirectoryDan Winship2013-05-081-0/+82
We have lots of device types and will soon have lots more, so let's put them in their own directory.