1
0
Fork 0

NFC: fdp: make struct nci_ops static

The structure nci_ops is local to the source and does not need to
be in global scope, so make it static.

Cleans up sparse warning:
symbol 'nci_ops' was not declared. Should it be static?

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
hifive-unleashed-5.1
Colin Ian King 2017-10-05 10:47:12 +01:00 committed by Samuel Ortiz
parent 5057f6647b
commit 81ade1cd67
1 changed files with 1 additions and 1 deletions

View File

@ -726,7 +726,7 @@ static struct nci_driver_ops fdp_prop_ops[] = {
},
};
struct nci_ops nci_ops = {
static struct nci_ops nci_ops = {
.open = fdp_nci_open,
.close = fdp_nci_close,
.send = fdp_nci_send,