diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-10-31 13:50:42 +0000 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-11-03 12:54:42 -0800 |
commit | 5c87206cdb537f67c51f3f9a229258dce77d9a23 (patch) | |
tree | 22574fa4e58be7fc03db84564197c983bc66bec3 | |
parent | 2e570cd187e3b5c8e56627523e0c12e2ffc4745f (diff) |
ptp: fc3: remove redundant check on variable ret
The check on ret has already been performed a few statements earlier
and ret has not been re-assigned and so the re-checking is redundant.
Clean up the code by removing the redundant check.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20241031135042.3250614-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | drivers/ptp/ptp_fc3.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/ptp/ptp_fc3.c b/drivers/ptp/ptp_fc3.c index e14e149b746e..879b82f03535 100644 --- a/drivers/ptp/ptp_fc3.c +++ b/drivers/ptp/ptp_fc3.c @@ -986,11 +986,6 @@ static int idtfc3_probe(struct platform_device *pdev) mutex_unlock(idtfc3->lock); - if (err) { - ptp_clock_unregister(idtfc3->ptp_clock); - return err; - } - platform_set_drvdata(pdev, idtfc3); return 0; |