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
这个提交包含在:
Dustin Brown
2019-03-01 15:20:58 -08:00
提交者 nshrivas
父节点 fbe297b129
当前提交 b5b21cac42
修改 6 个文件,包含 3 行新增101 行删除

查看文件

@@ -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.