diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-30 05:18:06 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-11-30 15:09:00 -0500 |
commit | 85eb28a36215b3d872384e027403b14ff483d60b (patch) | |
tree | c892d9321ac22c3e5d40af40e5832cfa57a56c80 /drivers/nfc/pn533.c | |
parent | ad9547c0413686a23e48793665a9ebd3e65c474c (diff) |
NFC: pn533: Staticise pn533_data_exchange()
It is not used outside this driver so no need to make the symbol global.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/nfc/pn533.c')
-rw-r--r-- | drivers/nfc/pn533.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/pn533.c b/drivers/nfc/pn533.c index 7bcb1febef0d..dbf214ef7321 100644 --- a/drivers/nfc/pn533.c +++ b/drivers/nfc/pn533.c | |||
@@ -1339,7 +1339,7 @@ error: | |||
1339 | return 0; | 1339 | return 0; |
1340 | } | 1340 | } |
1341 | 1341 | ||
1342 | int pn533_data_exchange(struct nfc_dev *nfc_dev, u32 target_idx, | 1342 | static int pn533_data_exchange(struct nfc_dev *nfc_dev, u32 target_idx, |
1343 | struct sk_buff *skb, | 1343 | struct sk_buff *skb, |
1344 | data_exchange_cb_t cb, | 1344 | data_exchange_cb_t cb, |
1345 | void *cb_context) | 1345 | void *cb_context) |