Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common.h
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ static inline unsigned long long rpcc(void){
#endif // !RPCC_DEFINED

#if !defined(BLAS_LOCK_DEFINED) && defined(__GNUC__)
static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){

do {
while (*address) {YIELDING;};
Expand Down
2 changes: 1 addition & 1 deletion common_alpha.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#define WMB asm("wmb")
#define RMB asm("mb")

static void __inline blas_lock(unsigned long *address){
static __inline void blas_lock(unsigned long *address){
#ifndef __DECC
unsigned long tmp1, tmp2;
asm volatile(
Expand Down
2 changes: 1 addition & 1 deletion common_arm.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#if defined(ARMV6) || defined(ARMV7) || defined(ARMV8)

static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){

int register ret;

Expand Down
2 changes: 1 addition & 1 deletion common_arm64.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ASSEMBLER


static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){

BLASULONG ret;

Expand Down
2 changes: 1 addition & 1 deletion common_power.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

void *qalloc(int flags, size_t bytes);

static void INLINE blas_lock(volatile unsigned long *address){
static INLINE void blas_lock(volatile unsigned long *address){

long int ret, val = 1;

Expand Down
2 changes: 1 addition & 1 deletion common_sparc.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

#ifndef ASSEMBLER

static void __inline blas_lock(volatile unsigned long *address){
static __inline void blas_lock(volatile unsigned long *address){

long int ret = 1;

Expand Down
2 changes: 1 addition & 1 deletion common_x86.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#define __volatile__
#endif

static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){

int ret;

Expand Down
2 changes: 1 addition & 1 deletion common_x86_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
#define RMB
#endif

static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){


#ifndef C_MSVC
Expand Down
2 changes: 1 addition & 1 deletion common_zarch.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ASSEMBLER

/*
static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){

BLASULONG ret;

Expand Down
2 changes: 1 addition & 1 deletion kernel/power/lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/* or implied, of The University of Texas at Austin. */
/*********************************************************************/

static void __inline blas_lock(volatile BLASULONG *address){
static __inline void blas_lock(volatile BLASULONG *address){

#ifdef __GNUC__

Expand Down