staging: vchiq_arm: Fixing code style of comments
authorMikhail Shvetsov <lameli67@gmail.com>
Wed, 20 Dec 2017 12:30:15 +0000 (15:30 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 21 Dec 2017 17:21:09 +0000 (18:21 +0100)
This removes checkpatch.pl warnings:

WARNING: Block comments use a trailing */ on a separate line
WARNING: Block comments should align the * on each line
WARNING: Block comments use * on subsequent lines

Signed-off-by: Mikhail Shvetsov <lameli67@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_kern_lib.c

index 6152596d23ea080f55f8a8d71ca333220a1d930f..3c9f97d600196e5312848cedb695ad48ab5a2f54 100644 (file)
@@ -75,7 +75,9 @@ VCHIQ_STATUS_T vchiq_initialise(VCHIQ_INSTANCE_T *instance_out)
        vchiq_log_trace(vchiq_core_log_level, "%s called", __func__);
 
        /* VideoCore may not be ready due to boot up timing.
-          It may never be ready if kernel and firmware are mismatched, so don't block forever. */
+        * It may never be ready if kernel and firmware are mismatched,so don't
+        * block forever.
+        */
        for (i = 0; i < VCHIQ_INIT_RETRIES; i++) {
                state = vchiq_get_state();
                if (state)
@@ -379,8 +381,9 @@ vchiq_blocking_bulk_transfer(VCHIQ_SERVICE_HANDLE_T handle, void *data,
                        if ((bulk->data != data) ||
                                (bulk->size != size)) {
                                /* This is not a retry of the previous one.
-                               ** Cancel the signal when the transfer
-                               ** completes. */
+                                * Cancel the signal when the transfer
+                                * completes.
+                                */
                                spin_lock(&bulk_waiter_spinlock);
                                bulk->userdata = NULL;
                                spin_unlock(&bulk_waiter_spinlock);
@@ -406,7 +409,8 @@ vchiq_blocking_bulk_transfer(VCHIQ_SERVICE_HANDLE_T handle, void *data,
 
                if (bulk) {
                        /* Cancel the signal when the transfer
-                        ** completes. */
+                        * completes.
+                        */
                        spin_lock(&bulk_waiter_spinlock);
                        bulk->userdata = NULL;
                        spin_unlock(&bulk_waiter_spinlock);