summaryrefslogtreecommitdiffstats
path: root/include/hwspinlock.h
blob: ba21c6d2969572186b51529c6a888d8e3d9a95c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
/*
 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
 */

#ifndef __HWSPINLOCK_H
#define __HWSPINLOCK_H

struct hwspinlock { /* TODO to be implemented */ };

static inline int hwspinlock_get_by_index(struct device_d *dev,
					  int index,
					  struct hwspinlock *hws)
{
	return -ENOSYS;
}

static inline int hwspinlock_lock_timeout(struct hwspinlock *hws,
					  int timeout_ms)
{
	return -ENOSYS;
}

static inline int hwspinlock_unlock(struct hwspinlock *hws)
{
	return -ENOSYS;
}

struct hwspinlock_ops { /* TODO to be implemented */ };

#endif /* __HWSPINLOCK_H */