aboutsummaryrefslogtreecommitdiff
path: root/product/sgm775
diff options
context:
space:
mode:
authorChris Kay <chris.kay@arm.com>2018-08-08 12:08:09 +0100
committerronald-cron-arm <39518861+ronald-cron-arm@users.noreply.github.com>2018-08-23 17:51:01 +0200
commit37516f13e26bd1a7a1df999fa8985013fb87c0f8 (patch)
treeb81dd66b5546e3daf9133fc7a459259564afeb16 /product/sgm775
parent41f3aa73a4dbea34657e45163753ec3e3edd3f69 (diff)
misc: Fix `ISO C does not allow extra ';' outside of a function` errors
Change-Id: I4b7dd6d19b795d46f0420a4e7138d9e2685fd772 Signed-off-by: Chris Kay <chris.kay@arm.com>
Diffstat (limited to 'product/sgm775')
-rw-r--r--product/sgm775/scp_ramfw/config_timer.c2
-rw-r--r--product/sgm775/scp_romfw/config_timer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/product/sgm775/scp_ramfw/config_timer.c b/product/sgm775/scp_ramfw/config_timer.c
index c00fb7a6..a3f027ff 100644
--- a/product/sgm775/scp_ramfw/config_timer.c
+++ b/product/sgm775/scp_ramfw/config_timer.c
@@ -38,7 +38,7 @@ static const struct fwk_element gtimer_dev_table[] = {
static const struct fwk_element *gtimer_get_dev_table(fwk_id_t module_id)
{
return gtimer_dev_table;
-};
+}
struct fwk_module_config config_gtimer = {
.get_element_table = gtimer_get_dev_table,
diff --git a/product/sgm775/scp_romfw/config_timer.c b/product/sgm775/scp_romfw/config_timer.c
index b76442f9..0b34496b 100644
--- a/product/sgm775/scp_romfw/config_timer.c
+++ b/product/sgm775/scp_romfw/config_timer.c
@@ -37,7 +37,7 @@ static const struct fwk_element gtimer_dev_table[] = {
static const struct fwk_element *gtimer_get_dev_table(fwk_id_t module_id)
{
return gtimer_dev_table;
-};
+}
struct fwk_module_config config_gtimer = {
.get_element_table = gtimer_get_dev_table,