blob: d0d71f7c321e4de18b5d1d76bf0ac817e74b13fa [file] [log] [blame]
Lukasz Majewski38517a72011-10-27 10:36:46 +02001/*
2 * Copyright (c) 2011 Samsung Electronics
3 * Lukasz Majewski <l.majewski@samsung.com>
4 *
5 * This is a Linux kernel compatibility layer for USB Gadget
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Lukasz Majewski38517a72011-10-27 10:36:46 +02008 */
9
10#ifndef __LIN_COMPAT_H__
11#define __LIN_COMPAT_H__
12
Masahiro Yamadaed3986c2017-11-22 02:38:11 +090013#include <linux/bitops.h>
Mike Frysinger6777a3c2012-04-26 02:34:44 +000014#include <linux/compat.h>
15
Lukasz Majewski38517a72011-10-27 10:36:46 +020016/* common */
Lukasz Majewski7010f5b2012-05-02 17:47:02 +020017#define DECLARE_BITMAP(name, bits) \
18 unsigned long name[BITS_TO_LONGS(bits)]
19
20#define small_const_nbits(nbits) \
21 (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG)
22
23static inline void bitmap_zero(unsigned long *dst, int nbits)
24{
25 if (small_const_nbits(nbits))
26 *dst = 0UL;
27 else {
28 int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long);
29 memset(dst, 0, len);
30 }
31}
32
Lukasz Majewski38517a72011-10-27 10:36:46 +020033#define dma_cache_maint(addr, size, mode) cache_flush()
34void cache_flush(void);
35
36#endif /* __LIN_COMPAT_H__ */