Commit f631a970 authored by Abdul Rauf's avatar Abdul Rauf Committed by Greg Kroah-Hartman

staging: unisys: fix checkpatch block comments warning

Fix the following warnings:
Block comments should align the * on each line
Signed-off-by: default avatarAbdul Rauf <abdulraufmujahid@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dca71b0f
...@@ -21,11 +21,11 @@ ...@@ -21,11 +21,11 @@
#include <linux/uuid.h> #include <linux/uuid.h>
/* /*
* Whenever this file is changed a corresponding change must be made in * Whenever this file is changed a corresponding change must be made in
* the Console/ServicePart/visordiag_early/supervisor_channel.h file * the Console/ServicePart/visordiag_early/supervisor_channel.h file
* which is needed for Linux kernel compiles. These two files must be * which is needed for Linux kernel compiles. These two files must be
* in sync. * in sync.
*/ */
/* define the following to prevent include nesting in kernel header /* define the following to prevent include nesting in kernel header
* files of similar abbreviated content * files of similar abbreviated content
...@@ -310,82 +310,82 @@ static inline int spar_check_channel_server(uuid_le typeuuid, char *name, ...@@ -310,82 +310,82 @@ static inline int spar_check_channel_server(uuid_le typeuuid, char *name,
} }
/* /*
* Routine Description: * Routine Description:
* Tries to insert the prebuilt signal pointed to by pSignal into the nth * Tries to insert the prebuilt signal pointed to by pSignal into the nth
* Queue of the Channel pointed to by pChannel * Queue of the Channel pointed to by pChannel
* *
* Parameters: * Parameters:
* pChannel: (IN) points to the IO Channel * pChannel: (IN) points to the IO Channel
* Queue: (IN) nth Queue of the IO Channel * Queue: (IN) nth Queue of the IO Channel
* pSignal: (IN) pointer to the signal * pSignal: (IN) pointer to the signal
* *
* Assumptions: * Assumptions:
* - pChannel, Queue and pSignal are valid. * - pChannel, Queue and pSignal are valid.
* - If insertion fails due to a full queue, the caller will determine the * - If insertion fails due to a full queue, the caller will determine the
* retry policy (e.g. wait & try again, report an error, etc.). * retry policy (e.g. wait & try again, report an error, etc.).
* *
* Return value: 1 if the insertion succeeds, 0 if the queue was * Return value: 1 if the insertion succeeds, 0 if the queue was
* full. * full.
*/ */
unsigned char spar_signal_insert(struct channel_header __iomem *ch, u32 queue, unsigned char spar_signal_insert(struct channel_header __iomem *ch, u32 queue,
void *sig); void *sig);
/* /*
* Routine Description: * Routine Description:
* Removes one signal from Channel pChannel's nth Queue at the * Removes one signal from Channel pChannel's nth Queue at the
* time of the call and copies it into the memory pointed to by * time of the call and copies it into the memory pointed to by
* pSignal. * pSignal.
* *
* Parameters: * Parameters:
* pChannel: (IN) points to the IO Channel * pChannel: (IN) points to the IO Channel
* Queue: (IN) nth Queue of the IO Channel * Queue: (IN) nth Queue of the IO Channel
* pSignal: (IN) pointer to where the signals are to be copied * pSignal: (IN) pointer to where the signals are to be copied
* *
* Assumptions: * Assumptions:
* - pChannel and Queue are valid. * - pChannel and Queue are valid.
* - pSignal points to a memory area large enough to hold queue's SignalSize * - pSignal points to a memory area large enough to hold queue's SignalSize
* *
* Return value: 1 if the removal succeeds, 0 if the queue was * Return value: 1 if the removal succeeds, 0 if the queue was
* empty. * empty.
*/ */
unsigned char spar_signal_remove(struct channel_header __iomem *ch, u32 queue, unsigned char spar_signal_remove(struct channel_header __iomem *ch, u32 queue,
void *sig); void *sig);
/* /*
* Routine Description: * Routine Description:
* Removes all signals present in Channel pChannel's nth Queue at the * Removes all signals present in Channel pChannel's nth Queue at the
* time of the call and copies them into the memory pointed to by * time of the call and copies them into the memory pointed to by
* pSignal. Returns the # of signals copied as the value of the routine. * pSignal. Returns the # of signals copied as the value of the routine.
* *
* Parameters: * Parameters:
* pChannel: (IN) points to the IO Channel * pChannel: (IN) points to the IO Channel
* Queue: (IN) nth Queue of the IO Channel * Queue: (IN) nth Queue of the IO Channel
* pSignal: (IN) pointer to where the signals are to be copied * pSignal: (IN) pointer to where the signals are to be copied
* *
* Assumptions: * Assumptions:
* - pChannel and Queue are valid. * - pChannel and Queue are valid.
* - pSignal points to a memory area large enough to hold Queue's MaxSignals * - pSignal points to a memory area large enough to hold Queue's MaxSignals
* # of signals, each of which is Queue's SignalSize. * # of signals, each of which is Queue's SignalSize.
* *
* Return value: * Return value:
* # of signals copied. * # of signals copied.
*/ */
unsigned int spar_signal_remove_all(struct channel_header *ch, u32 queue, unsigned int spar_signal_remove_all(struct channel_header *ch, u32 queue,
void *sig); void *sig);
/* /*
* Routine Description: * Routine Description:
* Determine whether a signal queue is empty. * Determine whether a signal queue is empty.
* *
* Parameters: * Parameters:
* pChannel: (IN) points to the IO Channel * pChannel: (IN) points to the IO Channel
* Queue: (IN) nth Queue of the IO Channel * Queue: (IN) nth Queue of the IO Channel
* *
* Return value: * Return value:
* 1 if the signal queue is empty, 0 otherwise. * 1 if the signal queue is empty, 0 otherwise.
*/ */
unsigned char spar_signalqueue_empty(struct channel_header __iomem *ch, unsigned char spar_signalqueue_empty(struct channel_header __iomem *ch,
u32 queue); u32 queue);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment