summaryrefslogtreecommitdiff
path: root/api/api.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-07-15 12:28:22 -0600
committerTom Rini <trini@konsulko.com>2024-07-15 12:28:22 -0600
commitaf3c2166d54cdb71914baece900095bad5a44862 (patch)
treefb3305c01cc31f9d81ff9822486daa6f6243f98e /api/api.c
parentc00018507d9923b9137be4b89eb3c3110708a096 (diff)
parent3451b69e33dd3c862d9a843ed22c06c3184136b8 (diff)
Merge patch series "api: Remove duplicate newlines"
This removes a number of duplicate newlines throughout the codebase.
Diffstat (limited to 'api/api.c')
-rw-r--r--api/api.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/api/api.c b/api/api.c
index d22132f62fe..b892c5c278a 100644
--- a/api/api.c
+++ b/api/api.c
@@ -180,7 +180,6 @@ static int API_get_timer(va_list ap)
return 0;
}
-
/*****************************************************************************
*
* pseudo signature:
@@ -230,7 +229,6 @@ static int API_dev_enum(va_list ap)
return 0;
}
-
static int API_dev_open(va_list ap)
{
struct device_info *di;
@@ -262,7 +260,6 @@ static int API_dev_open(va_list ap)
return err;
}
-
static int API_dev_close(va_list ap)
{
struct device_info *di;
@@ -297,7 +294,6 @@ static int API_dev_close(va_list ap)
return err;
}
-
/*
* pseudo signature:
*
@@ -376,7 +372,6 @@ static int API_dev_write(va_list ap)
return err;
}
-
/*
* pseudo signature:
*
@@ -462,7 +457,6 @@ static int API_dev_read(va_list ap)
return 0;
}
-
/*
* pseudo signature:
*