mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-14 19:37:32 +07:00

Introducing local_lock broke compilation; fix it all up. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
9 lines
234 B
C
9 lines
234 B
C
#ifndef _LINUX_LOCAL_LOCK
|
|
#define _LINUX_LOCAL_LOCK
|
|
typedef struct { } local_lock_t;
|
|
|
|
static inline void local_lock(local_lock_t *lock) { }
|
|
static inline void local_unlock(local_lock_t *lock) { }
|
|
#define INIT_LOCAL_LOCK(x) { }
|
|
#endif
|