Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7d0281b authored by Eric Lapuyade's avatar Eric Lapuyade Committed by Samuel Ortiz
Browse files

NFC: Fix LLC registration definitions for ANSI compliance

parent c51ad34e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}
+1 −1
Original line number Diff line number Diff line
@@ -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);
}