From: Viresh Kumar Date: Wed, 2 Sep 2015 15:57:13 +0000 (+0530) Subject: greybus: svc: Include system headers at the top X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f66427adfd407ea08236ab541df192e15671b6cf;p=openwrt%2Fstaging%2Fblogic.git greybus: svc: Include system headers at the top System headers should get included before greybus.h. Its followed everywhere except svc.c. Fix it. Reported-by: Johan Hovold Signed-off-by: Viresh Kumar Signed-off-by: Johan Hovold --- diff --git a/drivers/staging/greybus/svc.c b/drivers/staging/greybus/svc.c index ac8ff44f3a89..3b37dfeb8ef4 100644 --- a/drivers/staging/greybus/svc.c +++ b/drivers/staging/greybus/svc.c @@ -7,9 +7,10 @@ * Released under the GPLv2 only. */ -#include "greybus.h" #include +#include "greybus.h" + #define CPORT_FLAGS_E2EFC (1) #define CPORT_FLAGS_CSD_N (2) #define CPORT_FLAGS_CSV_N (4)