Sun Dec 19 00:29:17 2021 UTC ()
Define IS_ENABLED and IS_REACHABLE.


(riastradh)
diff -r1.2 -r1.3 src/sys/external/bsd/drm2/include/linux/export.h

cvs diff -r1.2 -r1.3 src/sys/external/bsd/drm2/include/linux/Attic/export.h (expand / switch to unified diff)

--- src/sys/external/bsd/drm2/include/linux/Attic/export.h 2014/03/18 18:20:43 1.2
+++ src/sys/external/bsd/drm2/include/linux/Attic/export.h 2021/12/19 00:29:17 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: export.h,v 1.2 2014/03/18 18:20:43 riastradh Exp $ */ 1/* $NetBSD: export.h,v 1.3 2021/12/19 00:29:17 riastradh Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2013 The NetBSD Foundation, Inc. 4 * Copyright (c) 2013 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Taylor R. Campbell. 8 * by Taylor R. Campbell.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -27,14 +27,17 @@ @@ -27,14 +27,17 @@
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32#ifndef _LINUX_EXPORT_H_ 32#ifndef _LINUX_EXPORT_H_
33#define _LINUX_EXPORT_H_ 33#define _LINUX_EXPORT_H_
34 34
35#define EXPORT_SYMBOL(name) 35#define EXPORT_SYMBOL(name)
36 36
37/* XXX Provisional -- this shouldn't happen in sources we use. */ 37/* XXX Provisional -- this shouldn't happen in sources we use. */
38#define EXPORT_SYMBOL_GPL(name) 38#define EXPORT_SYMBOL_GPL(name)
39 39
 40#define IS_ENABLED(X) X
 41#define IS_REACHABLE(X) X
 42
40#endif /* _LINUX_EXPORT_H_ */ 43#endif /* _LINUX_EXPORT_H_ */