diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2013-05-07 19:22:11 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-06-14 13:44:19 +0200 |
commit | 0b456c418a5595b9d67f300c9ac6a2441e774603 (patch) | |
tree | 3a995c4573c1cd6e7fd0582e9b233ab4b40f5817 /net/nfc/core.c | |
parent | 322bce957e9b0e30ef7147dae0414ad8f3f558c8 (diff) | |
download | op-kernel-dev-0b456c418a5595b9d67f300c9ac6a2441e774603.zip op-kernel-dev-0b456c418a5595b9d67f300c9ac6a2441e774603.tar.gz |
NFC: Remove the static supported_se field
Supported secure elements are typically found during a discovery process
initiated when the NFC controller is up and running. For a given NFC
chipset there can be many configurations (embedded SE or not, with or
without a SIM card wired to the NFC controller SWP interface, etc...) and
thus driver code will never know before hand which SEs are available.
So we remove this field, it will be replaced by a real SE discovery
mechanism.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'net/nfc/core.c')
-rw-r--r-- | net/nfc/core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/nfc/core.c b/net/nfc/core.c index eb3cecf..334954a 100644 --- a/net/nfc/core.c +++ b/net/nfc/core.c @@ -832,7 +832,6 @@ struct nfc_dev *nfc_get_device(unsigned int idx) */ struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops, u32 supported_protocols, - u32 supported_se, int tx_headroom, int tx_tailroom) { struct nfc_dev *dev; @@ -850,7 +849,6 @@ struct nfc_dev *nfc_allocate_device(struct nfc_ops *ops, dev->ops = ops; dev->supported_protocols = supported_protocols; - dev->supported_se = supported_se; dev->active_se = NFC_SE_NONE; dev->tx_headroom = tx_headroom; dev->tx_tailroom = tx_tailroom; |