Commit 85df0b85 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: epl: fix up some non-ANSI functions

() isn't valid, you need to put (void).

Cc: Daniel Krueger <daniel.krueger@systec-electronic.com>
Cc: Ronald Sieber <Ronald.Sieber@systec-electronic.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent dcf5371c
...@@ -202,7 +202,7 @@ static tEplDllkCalInstance EplDllkCalInstance_g; ...@@ -202,7 +202,7 @@ static tEplDllkCalInstance EplDllkCalInstance_g;
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
tEplKernel EplDllkCalAddInstance() tEplKernel EplDllkCalAddInstance(void)
{ {
tEplKernel Ret = kEplSuccessful; tEplKernel Ret = kEplSuccessful;
#ifndef EPL_NO_FIFO #ifndef EPL_NO_FIFO
...@@ -279,7 +279,7 @@ tEplKernel EplDllkCalAddInstance() ...@@ -279,7 +279,7 @@ tEplKernel EplDllkCalAddInstance()
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
tEplKernel EplDllkCalDelInstance() tEplKernel EplDllkCalDelInstance(void)
{ {
tEplKernel Ret = kEplSuccessful; tEplKernel Ret = kEplSuccessful;
#ifndef EPL_NO_FIFO #ifndef EPL_NO_FIFO
......
...@@ -173,7 +173,7 @@ static tEplKernel EplDlluCalSetAsndServiceIdFilter(tEplDllAsndServiceId ...@@ -173,7 +173,7 @@ static tEplKernel EplDlluCalSetAsndServiceIdFilter(tEplDllAsndServiceId
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
tEplKernel EplDlluCalAddInstance() tEplKernel EplDlluCalAddInstance(void)
{ {
tEplKernel Ret = kEplSuccessful; tEplKernel Ret = kEplSuccessful;
...@@ -198,7 +198,7 @@ tEplKernel EplDlluCalAddInstance() ...@@ -198,7 +198,7 @@ tEplKernel EplDlluCalAddInstance()
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
tEplKernel EplDlluCalDelInstance() tEplKernel EplDlluCalDelInstance(void)
{ {
tEplKernel Ret = kEplSuccessful; tEplKernel Ret = kEplSuccessful;
......
...@@ -378,7 +378,7 @@ tEplKernel EplNmtMnuAddInstance(tEplNmtMnuCbNodeEvent pfnCbNodeEvent_p, ...@@ -378,7 +378,7 @@ tEplKernel EplNmtMnuAddInstance(tEplNmtMnuCbNodeEvent pfnCbNodeEvent_p,
// //
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
tEplKernel EplNmtMnuDelInstance() tEplKernel EplNmtMnuDelInstance(void)
{ {
tEplKernel Ret; tEplKernel Ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment