Fix compiler warning
nfc.c:121: warning: function declaration isn't a prototype nfc.c: In function 'nfc_drivers_init': nfc.c:121: warning: old-style function definition
This commit is contained in:
parent
3aadb45988
commit
e7290de83b
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ struct nfc_driver_list {
|
|||
const struct nfc_driver_list *nfc_drivers = NULL;
|
||||
|
||||
static void
|
||||
nfc_drivers_init()
|
||||
nfc_drivers_init(void)
|
||||
{
|
||||
#if defined (DRIVER_PN53X_USB_ENABLED)
|
||||
nfc_register_driver(&pn53x_usb_driver);
|
||||
|
|
Loading…
Reference in a new issue