dect
/
linux-2.6
Archived
13
0
Fork 0

NFC: Fix LLC registration definitions for ANSI compliance

Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Eric Lapuyade 2012-09-18 19:24:37 +02:00 committed by Samuel Ortiz
parent c51ad34e54
commit a7d0281bbf
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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);
}