staging: unisys: fix CamelCase names in do_locked_client_insert()
Fix CamelCase names: pSignal => signal Remove unused parameters issueInterruptIfEmpty and interruptHandle, and update callers of this function. Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
120758c0d1
commit
0b7682ff56
1 changed files with 6 additions and 8 deletions
|
@ -263,22 +263,21 @@ EXPORT_SYMBOL_GPL(uisqueue_interlocked_and);
|
|||
static u8
|
||||
do_locked_client_insert(struct uisqueue_info *queueinfo,
|
||||
unsigned int whichqueue,
|
||||
void *pSignal,
|
||||
void *signal,
|
||||
spinlock_t *lock,
|
||||
unsigned char issueInterruptIfEmpty,
|
||||
u64 interruptHandle, u8 *channelId)
|
||||
u8 *channel_id)
|
||||
{
|
||||
unsigned long flags;
|
||||
u8 rc = 0;
|
||||
|
||||
spin_lock_irqsave(lock, flags);
|
||||
if (!spar_channel_client_acquire_os(queueinfo->chan, channelId))
|
||||
if (!spar_channel_client_acquire_os(queueinfo->chan, channel_id))
|
||||
goto unlock;
|
||||
if (spar_signal_insert(queueinfo->chan, whichqueue, pSignal)) {
|
||||
if (spar_signal_insert(queueinfo->chan, whichqueue, signal)) {
|
||||
queueinfo->packets_sent++;
|
||||
rc = 1;
|
||||
}
|
||||
spar_channel_client_release_os(queueinfo->chan, channelId);
|
||||
spar_channel_client_release_os(queueinfo->chan, channel_id);
|
||||
unlock:
|
||||
spin_unlock_irqrestore((spinlock_t *)lock, flags);
|
||||
return rc;
|
||||
|
@ -295,8 +294,7 @@ uisqueue_put_cmdrsp_with_lock_client(struct uisqueue_info *queueinfo,
|
|||
{
|
||||
while (!do_locked_client_insert(queueinfo, whichqueue, cmdrsp,
|
||||
(spinlock_t *)insertlock,
|
||||
issue_irq_if_empty,
|
||||
irq_handle, channel_id)) {
|
||||
channel_id)) {
|
||||
if (oktowait != OK_TO_WAIT) {
|
||||
LOGERR("****FAILED visor_signal_insert failed; cannot wait; insert aborted\n");
|
||||
return 0; /* failed to queue */
|
||||
|
|
Loading…
Reference in a new issue