qcacmn: Remove qdf_*_outline() APIs
Several qdf_*_outline() APIs exist which are straight aliases to their regular qdf_*() counterparts. Remove them, and update any callers to use the regular APIs instead. Change-Id: Ibe6e9cced521b93061e89690ab817ceafe49a469 CRs-Fixed: 2408267
这个提交包含在:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2018 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2014-2019 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
@@ -298,8 +298,6 @@ static inline int qdf_spin_trylock_bh(qdf_spinlock_t *lock, const char *func)
|
||||
}
|
||||
#define qdf_spin_trylock_bh(lock) qdf_spin_trylock_bh(lock, __func__)
|
||||
|
||||
int qdf_spin_trylock_bh_outline(qdf_spinlock_t *lock);
|
||||
|
||||
/**
|
||||
* qdf_spin_trylock() - spin trylock
|
||||
* @lock: spinlock object
|
||||
@@ -332,8 +330,6 @@ static inline void qdf_spin_lock_bh(qdf_spinlock_t *lock, const char *func)
|
||||
|
||||
#define qdf_spin_lock_bh(lock) qdf_spin_lock_bh(lock, __func__)
|
||||
|
||||
void qdf_spin_lock_bh_outline(qdf_spinlock_t *lock);
|
||||
|
||||
/**
|
||||
* qdf_spin_unlock_bh() - unlocks the spinlock mutex in soft irq context
|
||||
* @lock: spinlock object pointer
|
||||
@@ -345,8 +341,6 @@ static inline void qdf_spin_unlock_bh(qdf_spinlock_t *lock)
|
||||
__qdf_spin_unlock_bh(&lock->lock);
|
||||
}
|
||||
|
||||
void qdf_spin_unlock_bh_outline(qdf_spinlock_t *lock);
|
||||
|
||||
/**
|
||||
* qdf_spinlock_irq_exec - Execute the input function with spinlock held
|
||||
* and interrupt disabled.
|
||||
|
在新工单中引用
屏蔽一个用户