diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-03-23 02:17:00 +0300 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2016-07-04 13:11:54 +0300 |
commit | f36acc334fb86da3761583dce50faa17a4cbd4de (patch) | |
tree | 6ace6d0402202a8d5af981bca49c2bb1e6a6fc8b /drivers | |
parent | 8186f6e382d8719d0a4bc0ef218c4dd7cf55b496 (diff) | |
download | linux-f36acc334fb86da3761583dce50faa17a4cbd4de.tar.xz |
NFC: set info->ram_patch to NULL when it is released
When info->ram_patch is released info->otp_patch is being set
to NULL rather than info->ram_patch. I believe this is a cut-n-paste
bug from almost identical code proceeding it that uses the same
idiom for info->otp_patch.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/nfc/fdp/fdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/fdp/fdp.c b/drivers/nfc/fdp/fdp.c index e44a7a2f4061..d93d3145365f 100644 --- a/drivers/nfc/fdp/fdp.c +++ b/drivers/nfc/fdp/fdp.c @@ -345,7 +345,7 @@ static void fdp_nci_release_firmware(struct nci_dev *ndev) if (info->ram_patch) { release_firmware(info->ram_patch); - info->otp_patch = NULL; + info->ram_patch = NULL; } } |