Skip to content

Commit

Permalink
NFC: Fix LLC registration definitions for ANSI compliance
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Eric Lapuyade authored and Samuel Ortiz committed Sep 24, 2012
1 parent c51ad34 commit a7d0281
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/nfc/hci/llc_nop.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static struct nfc_llc_ops llc_nop_ops = {
.xmit_from_hci = llc_nop_xmit_from_hci,
};

int nfc_llc_nop_register()
int nfc_llc_nop_register(void)
{
return nfc_llc_register(LLC_NOP_NAME, &llc_nop_ops);
}
2 changes: 1 addition & 1 deletion net/nfc/hci/llc_shdlc.c
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ static struct nfc_llc_ops llc_shdlc_ops = {
.xmit_from_hci = llc_shdlc_xmit_from_hci,
};

int nfc_llc_shdlc_register()
int nfc_llc_shdlc_register(void)
{
return nfc_llc_register(LLC_SHDLC_NAME, &llc_shdlc_ops);
}

0 comments on commit a7d0281

Please sign in to comment.