ptp: fix code indentation issues
authorCarlos Llamas <cmllamas@google.com>
Wed, 27 Oct 2021 23:18:02 +0000 (23:18 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 Oct 2021 13:42:20 +0000 (14:42 +0100)
This fixes the following checkpatch.pl errors:

ERROR: code indent should use tabs where possible
+^I        if (ptp->pps_source)$

ERROR: code indent should use tabs where possible
+^I                pps_unregister_source(ptp->pps_source);$

ERROR: code indent should use tabs where possible
+^I                kthread_destroy_worker(ptp->kworker);$

Fixes: 4225fea1cb28 ("ptp: Fix possible memory leak in ptp_clock_register()")
Signed-off-by: Carlos Llamas <cmllamas@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/ptp/ptp_clock.c

index f9b2d66b04433e749a695fcbc639166300073a3a..0e4bc8b9329dd2e2c08ceb033000a822c065105a 100644 (file)
@@ -284,11 +284,11 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
        /* Create a posix clock and link it to the device. */
        err = posix_clock_register(&ptp->clock, &ptp->dev);
        if (err) {
-               if (ptp->pps_source)
-                       pps_unregister_source(ptp->pps_source);
+               if (ptp->pps_source)
+                       pps_unregister_source(ptp->pps_source);
 
                if (ptp->kworker)
-                       kthread_destroy_worker(ptp->kworker);
+                       kthread_destroy_worker(ptp->kworker);
 
                put_device(&ptp->dev);