vcsm: Fix block comment formatting
authorDave Stevenson <dave.stevenson@raspberrypi.org>
Fri, 1 Sep 2017 15:34:13 +0000 (16:34 +0100)
committerRaspbian kernel package updater <root@raspbian.org>
Sun, 8 Oct 2017 01:09:11 +0000 (01:09 +0000)
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
drivers/char/broadcom/vc_sm/vc_sm_defs.h
drivers/char/broadcom/vc_sm/vc_vchi_sm.h

index 8242e8ef28e445ae132187d02c74448b0226c1a4..de6afe9f65af45582c79a62abd41c688274ad8f2 100644 (file)
@@ -151,8 +151,10 @@ struct vc_sm_lock_result_t {
        uint32_t res_handle;
        /* Pointer to resource buffer */
        uint32_t res_mem;
-       /* Pointer to former resource buffer if the memory
-        * was reallocated */
+       /*
+        * Pointer to former resource buffer if the memory
+        * was reallocated
+        */
        uint32_t res_old_mem;
 
 };
index 110db20ef517af9589616e5892c5b48681e62966..48e721c7f2e4ac5abe376a8481e01b0bbcc6d3ad 100644 (file)
@@ -23,7 +23,7 @@
 
 /*
  * Forward declare.
-*/
+ */
 typedef struct sm_instance *VC_VCHI_SM_HANDLE_T;
 
 /*
@@ -57,7 +57,7 @@ int vc_vchi_sm_free(VC_VCHI_SM_HANDLE_T handle,
 /*
  * Ask the shared memory service to lock up some memory that was previously
  * allocated by the vc_vchi_sm_alloc function call.
-*/
+ */
 int vc_vchi_sm_lock(VC_VCHI_SM_HANDLE_T handle,
                    struct vc_sm_lock_unlock_t *lock_unlock,
                    struct vc_sm_lock_result_t *lock_result,
@@ -66,7 +66,7 @@ int vc_vchi_sm_lock(VC_VCHI_SM_HANDLE_T handle,
 /*
  * Ask the shared memory service to unlock some memory that was previously
  * allocated by the vc_vchi_sm_alloc function call.
-*/
+ */
 int vc_vchi_sm_unlock(VC_VCHI_SM_HANDLE_T handle,
                      struct vc_sm_lock_unlock_t *lock_unlock,
                      uint32_t *trans_id, uint8_t wait_reply);
@@ -74,7 +74,7 @@ int vc_vchi_sm_unlock(VC_VCHI_SM_HANDLE_T handle,
 /*
  * Ask the shared memory service to resize some memory that was previously
  * allocated by the vc_vchi_sm_alloc function call.
-*/
+ */
 int vc_vchi_sm_resize(VC_VCHI_SM_HANDLE_T handle,
                      struct vc_sm_resize_t *resize, uint32_t *trans_id);
 
@@ -82,7 +82,7 @@ int vc_vchi_sm_resize(VC_VCHI_SM_HANDLE_T handle,
  * Walk the allocated resources on the videocore side, the allocation will
  * show up in the log.  This is purely for debug/information and takes no
  * specific actions.
-*/
+ */
 int vc_vchi_sm_walk_alloc(VC_VCHI_SM_HANDLE_T handle);
 
 /*