Skip to content

Commit

Permalink
Staging: epl: fix up some non-ANSI functions
Browse files Browse the repository at this point in the history
() 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: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Apr 3, 2009
1 parent dcf5371 commit 85df0b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/epl/EplDllkCal.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static tEplDllkCalInstance EplDllkCalInstance_g;
//
//---------------------------------------------------------------------------

tEplKernel EplDllkCalAddInstance()
tEplKernel EplDllkCalAddInstance(void)
{
tEplKernel Ret = kEplSuccessful;
#ifndef EPL_NO_FIFO
Expand Down Expand Up @@ -279,7 +279,7 @@ tEplKernel EplDllkCalAddInstance()
//
//---------------------------------------------------------------------------

tEplKernel EplDllkCalDelInstance()
tEplKernel EplDllkCalDelInstance(void)
{
tEplKernel Ret = kEplSuccessful;
#ifndef EPL_NO_FIFO
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/epl/EplDlluCal.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static tEplKernel EplDlluCalSetAsndServiceIdFilter(tEplDllAsndServiceId
//
//---------------------------------------------------------------------------

tEplKernel EplDlluCalAddInstance()
tEplKernel EplDlluCalAddInstance(void)
{
tEplKernel Ret = kEplSuccessful;

Expand All @@ -198,7 +198,7 @@ tEplKernel EplDlluCalAddInstance()
//
//---------------------------------------------------------------------------

tEplKernel EplDlluCalDelInstance()
tEplKernel EplDlluCalDelInstance(void)
{
tEplKernel Ret = kEplSuccessful;

Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/epl/EplNmtMnu.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ tEplKernel EplNmtMnuAddInstance(tEplNmtMnuCbNodeEvent pfnCbNodeEvent_p,
//
//---------------------------------------------------------------------------

tEplKernel EplNmtMnuDelInstance()
tEplKernel EplNmtMnuDelInstance(void)
{
tEplKernel Ret;

Expand Down

0 comments on commit 85df0b8

Please sign in to comment.