diff options
author | Eric Lapuyade <eric.lapuyade@linux.intel.com> | 2013-07-19 16:58:39 +0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-08-14 03:13:33 +0400 |
commit | 8bd7fc89958c2f23a5c5d0113ff65713683041ea (patch) | |
tree | e826fa73ac5dea6c11e30945dc5e33543fcdc259 /drivers/nfc/pn544/mei.c | |
parent | 352a5f5fb3ad8f829cfd4248fe6119895bda881f (diff) | |
download | linux-8bd7fc89958c2f23a5c5d0113ff65713683041ea.tar.xz |
NFC: pn544: Add firmware operations hci ops
The firmware operation callback is passed by the physical layer to the
hci driver during probe. All the driver does is to store it and call it
when the fw_upload hci ops is invoked.
Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc/pn544/mei.c')
-rw-r--r-- | drivers/nfc/pn544/mei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/pn544/mei.c b/drivers/nfc/pn544/mei.c index b5d3d18179eb..ee67de50c36f 100644 --- a/drivers/nfc/pn544/mei.c +++ b/drivers/nfc/pn544/mei.c @@ -45,7 +45,7 @@ static int pn544_mei_probe(struct mei_cl_device *device, r = pn544_hci_probe(phy, &mei_phy_ops, LLC_NOP_NAME, MEI_NFC_HEADER_SIZE, 0, MEI_NFC_MAX_HCI_PAYLOAD, - &phy->hdev); + NULL, &phy->hdev); if (r < 0) { nfc_mei_phy_free(phy); |