aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdul Rauf <[email protected]>2017-01-11 01:29:36 +0000
committerGreg Kroah-Hartman <[email protected]>2017-01-16 18:08:56 +0100
commitcbd8733cfd4d3a15b02fe5c8986f35cd75ab66ef (patch)
treec62a0dae269fa514c2e92394ef5ea7852d729697
parent0a8d852234b35ddfe6b28769967d538dc39b9517 (diff)
staging: greybus: loopback_test: fix checkpatch bad function definition error
Fix the following Errors: Bad function definition - void abort() should probably be void abort(void) Signed-off-by: Abdul Rauf <[email protected]> Acked-by: Viresh Kumar <[email protected]> Acked-by: Johan Hovold <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/greybus/tools/loopback_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/tools/loopback_test.c b/drivers/staging/greybus/tools/loopback_test.c
index f7f4cd6fb55b..5312b2aa32f1 100644
--- a/drivers/staging/greybus/tools/loopback_test.c
+++ b/drivers/staging/greybus/tools/loopback_test.c
@@ -168,7 +168,7 @@ GET_AVG(latency_avg);
GET_AVG(apbridge_unipro_latency_avg);
GET_AVG(gbphy_firmware_latency_avg);
-void abort()
+void abort(void)
{
_exit(1);
}